@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --first-color: #fff;
    --second-color: #000;
    --third-color: #1A7339;
    --fourth-color: #6FA682;
    --fifth-color: #A3BFAD;
    --sixth-color: #f17474;
    --seventh-color: #ff5544;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: url("../assets/fundo_login.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 201, 201, 0.5);
    z-index: -1;
}

.login {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30rem;
    max-width: 40rem;
    background: var(--third-color);
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: var(--first-color);
    position: relative;
    z-index: 1; 
}

.class-retrieve_pswd a {
    color: white !important;
    cursor:pointer !important;
    text-decoration: none !important;
}

.divRememberMe {
        display: flex;
        flex-direction: row;
}

#idAjaxCheckbox_remember_me label{
    cursor: pointer;
    margin-left: 10px;
    margin-top: 5px;
    cursor: pointer;
    white-space: nowrap;
}

span.sc-ui-pwd-toggle-icon {
    padding-bottom: 10px !IMPORTANT;
    bottom: 2.4rem !IMPORTANT;
    color: black !IMPORTANT;
}

.button {
    cursor: pointer;
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.8rem;
}

.scButton_danger {
    font-family: Leelawadee, Ebrima, 'Bahnschrift Light', Gadugi, 'Nirmala UI', 'Segoe UI', Verdana;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    text-decoration: none;
    border-width: 1px;
    border-color: #fa5c7c;
    border-style: solid;
    border-radius: 4px;
    background-color: #fa5c7c;
    background-image: none;
    box-shadow: 0 2px 6px 0 rgba(250, 92, 124, .5);
    filter: alpha(opacity = 100);
    opacity: 1;
    padding: 9px 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.login_logo {
    width: 15rem;
}

.login-container-presentation {
    margin-bottom: 0.7rem;
}

.login-container-presentation h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.login-container-presentation h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.login-container-presentation p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.login-container-presentation a {
    color: var(--first-color);
}

.login-form input {
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.login-form> .submit .button{
    width: 100%;
    padding: 0.8rem;
    margin-top: -1rem;
    background: var(--fourth-color);
    color: var(--first-color);
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}


.login-form .button:hover {
    background: var(--fifth-color);
}

.btn-sair {
 background: var(--seventh-color);
}

.login-form .btn-sair:hover {
    background: var(--sixth-color);
}


.login-form button.exit-button {
    background: var(--sixth-color);
}

.login-form button.exit-button:hover {
    background: var(--seventh-color);
}

.login-captcha-img {
    height: 4rem;
    margin-top: 1rem;
}

#captcha-input {
    width: 100%;
    padding: 0.8rem;
    margin: 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.login-support {
    padding-top: 0.5rem;
}

.login-support a{
    color: var(--first-color);
    text-decoration: none;
    padding-top: 3rem;
}

.login-support a:hover {
    transition: 0.3s;
    color: var(--fourth-color);
}

@media (max-width: 800px) {
    #idAjaxCheckbox_remember_me label {
        margin-left: 5px; /* Ajuste conforme necessário para telas menores */
    }
}
