/* Padronizações */
* {
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    width: 100%;
    /* overflow-y: hidden; */
    background: #e3e3e3;
}

/* Classes genéricas */
.margin-auto {
    margin: 0 auto;
}

.bg-success-gradient {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(141.8deg, #a2d375 -18.19%, #14b474 130.57%);
}

.bg-form {
    background-color: #e9ecee;
}

.drop-shadow {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-custom-1 {
    background: #ffc42d;
    width: 75%;
}

.text-error {
    color: #f6394d;
}

/* Página de login */
#login-container {
    width: 400px;
    height: 500px;
    background: #494949;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
}

#brand-area {
    width: 100%;
    height: 100px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

#form-area {
    width: 350px;
    height: 300px;
    margin-top: 30px;
}

#form-area .container {
    width: 80%;
}

#brand-area img {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

/* Página principal */
/* The side navigation menu */
.bg-2b {
    background: #2b2b2b;
}

/* The navigation menu links */
.sidenav ul li a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #e3e3e3;
    display: block;
    transition: 0.3s;
}

.sidenav ul li {
    height: 50px;
}

.sidenav ul {
    margin: 0;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

/* When you mouse over the navigation links, change their color */
.sidenav ul li a:hover {
    background-color: #373737;
}

.activated {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    background-color: #494949;
}

.sidenav ul .activated {
    height: 100%;
    background-color: #494949;
}

.sidenav .activated a:hover {
    background-color: #494949;
}

#side-brand {
    width: 100%;
    height: 150px;
}

#brand-side {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    height: 100px;
    margin: 0 auto;
    margin-top: 20px;
}

#user-container {
    /* width: 228px; */
    height: 50px;
    background-color: #494949;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 0;
}

.sidenav #user-container a:hover {
    background-color: #494949;
}

.arrow {
    margin-left: 10px;
    width: 27px;
    height: 27px;
    color: #ffc42d;
}

.angle {
    color: #ffc42d;
}

.page-link {
    height: 38px;
    display: flex;
    align-items: center;
}

#currentPage .page-link {
    background-color: #ffc42d;
    color: white;
}

#user-name-container {
    color: #e3e3e3;
    font-size: 22px;
    margin-left: 60px;
    margin-bottom: 10px;
}

#main-area {
    width: 100%;
}

#filter-area {
    width: 100%;
    height: 150px;
    background-color: #494949;
}

#register-area {
    width: 100%;
    overflow-y: hidden;
}

.btn-custom-2 {
    background: #ffc42d;
}

.btn-custom-3 {
    background: #00c851;
}

#cards-area {
    display: flex;
    justify-content: center;
    /* height: 100vh; */
}
.request-card {
    width: 80%;
    background-color: white;
    border: 1px solid #e3e3e3;
}

.m-pag {
    margin-top: 10px;
    margin-left: 122px;
}

.nav-bar-side {
    position: fixed;
}

.ml-nav {
    margin-left: 16.7%;
}

@media (max-width: 576px) {
    #filter-area {
        width: 100%;
        height: 350px;
        background-color: #494949;
    }
}
