*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.container-portal{
    display: flex;
    flex-direction: column;
}

.container-portal .header{
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
}

.container-portal .header img{
    width: 50px;
}

.container-portal .content-page{
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(img/login-bg.jpg);
    height: 500px;
    width: 100%;
    background-color: #213529;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.content-page .login{
    display: flex;
    align-items: center;
    width: 400px;
}

.content-page .login form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-page .login .header-form h3{
    color: #fff;
    margin-bottom: 20px;
}

.content-page .login form input[type="text"],
.content-page .login form input[type="email"],
.content-page .login form input[type="password"] {
    width: 100%;
    margin: 0 15px;
    height: 35px;
    padding: 25px 15px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    background: #fcfbfb;
    color: #576366;
    font-size: 14px;
    margin-top: 20px;
}

.content-page .login form select {
    width: 100%;
    margin: 0 15px;
    height: 40px;
    padding: 0px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    background: #fcfbfb;
    color: #576366;
    font-size: 14px;
    margin-top: 20px;
}

.content-page .login form .header-form {
    text-align: center;
}

.content-page .login form h2 {
    font-size: 45px;
}

.content-page .login form i {
    margin: 30px;
    color: var(--orange-primary);
}


.button-form{
    outline: none;
    background-color: rgb(172, 135, 35);
    padding: 15px 25px;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid rgb(163, 128, 14);
    border-radius: 10px;
    transition: 0.3s;
    width: 100%;
    margin-top: 20px;
}

.text-bold{
    font-weight: bold;
    color: #555;
}

.container-portal footer{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-portal footer p{
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .content-page .login{
        width: 90%;
    }
}

.remember{
    display: flex;
    color: #fff;
    margin-top: 20px;
    gap: 0.5rem;
    font-weight: bold;
    align-self: flex-start;
}
