@import url("Cadastro/styles.css");
@import url("styles-mobile.css");

.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width:760px) {
    .login-container {
        flex-direction: column;
        justify-content: start;
    }
    .logo-column {
        width: 100%;
        height: 20%;
    }
    .logo-page {
        width: 20rem;
        height: auto;
    }
    .our-divider {
        display: none;
    }
    .login-column {
        width: 100%;
        height: 50%;
    }    
    .login-form-card {
        width: 80%;
    }
}
@media screen and (min-width:760px) and (max-width: 1024px) {
    .login-container {
        flex-direction: column;
        justify-content: start;
    }
    .logo-column {
        width: 100%;
        height: 25%;
    }
    .logo-page {
        width: 20rem;
        height: auto;
    }
    .our-divider {
        display: block;
        width: 55%;
        height: 2px;
        background-color: rgb(224, 224, 224);
        margin: 32px;
    }
    .login-column {
        width: 100%;
        height: 50%;
    }
    
    .login-form-card {
        width: 80%;
    }
}
@media screen and (min-width: 1024px) {
    .login-container {
        flex-direction: row;
        justify-content: center;
    }
    .logo-column {
        width: 45%;
        height: 100%;
    }
    .logo-page {
        width: 25rem;
        height: auto;
    }
    .our-divider {
        height: 75%;
        width: 2px;
        background-color: rgb(224, 224, 224);
    }
    .login-column {
        width: 60%;
        height: 100%;
    }
    .login-form-card {
        width: 60%;
    }
}

.logo-page {
    cursor: pointer;
}

.logo-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-divider {
    background-color: rgb(224, 224, 224);
}

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

.login-form-card {
    height: fit-content;
    border: 1px solid rgba(204, 204, 204, 0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 24px;
    margin: 24px 0px;
}

.login-form-container {
    width: 100%;
    height: 100%;
    padding: 32px;
}

.login-form-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    border-bottom: 1px solid rgb(224,224,224);
}

.input-box-group {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.input-box {
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 16px;
}

.input-box-group::-webkit-scrollbar {
    width: 3px;
}

.input-box-group::-webkit-scrollbar-track {
    width: 3px;
    border-radius: 4px;
    background-color: gray;
}

.input-box-group::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 4px;
    background-color: white;
}

.login-input-label {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 0px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.login-input {
    padding: 8px;
    border-radius: 6px;
    width: 100%;
    font-size: 14px;
}

.eye-password {
    width:20px;
    position:absolute;
    right: 10px;
    top: 25%;
    padding: 3px;
    border-radius: 6px;

    &:hover {
        background-color: rgb(224,224,224);
        cursor: pointer;
    }

    &:active {
        background-color: rgb(184,184,184);
    }
}

.submit-login {
    width: fit-content;
    border-radius: 6px;
    padding: 6px 24px;
    background-color: white;
    color: black;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.submit-login:hover {
    background-color: rgb(224, 224, 224);
}

.criar-conta-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-divider {
    width: 70%;
    height: 1px;
    background-color: rgb(224, 224, 224, 0.35);
    margin: 32px 0px;
}

.outras-formas-acesso {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.gov-btn {
    width: 240px;
    background-color: white;
    border-radius: 100em;
    color: #1351b4;
    font-weight: 500;
}

.gov-btn:hover {
    background-color: rgb(224,224,224);
    color: #1351b4;
}

.gov-logo-btn {
    width: 62px;
}