﻿.aluno-validation-message {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 10px;
}

.aluno-login-background {
    background: #030617;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px;
}

.aluno-login-container {
    width: 95%;
    max-width: 500px;
    min-height: 500px;
    top: 724px;
    left: 420px;
    border-radius: 35px;
    display: block;
    align-content: center;
    text-align: center;
    padding: 20px;
    background-color: white;
}

.aluno-login-title {
    color: #0C0F1E;
    font-family: Arial;
    font-size: 19.08px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.aluno-login-logo {
    width: 253px;
    height: 40.84px;
}

.aluno-login-input {
    background-color: #D1D1D1;
    width: 100%;
    height: 45px;
    border-radius: 15px;
    padding-left: 20px;
    padding-right: 40px; /* espaço para o ícone */
    border: none;
    outline: none;
    font-size: 16px;
}

.aluno-login-input::placeholder {
   font-family: Arial;
   font-size: 16px;
   font-weight: 600;
   position: absolute;
   left: 30px;
   top: 15px;
}

.aluno-login-button {
    background: #0C0F1E;
    width: 182px;
    height: 45px;
    border-radius: 20px;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    cursor: pointer;
    color: #4C5687;
    font-weight: bold;
}

.aluno-login-google-button {
    background-color: #FFF;
    width: 182px;
    height: 45px;
    border: none;
    color: #333;
    padding: 12px;
    border-radius: 20px;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}

.aluno-login-google-icon {
    width: 20px;
    margin-right: 10px;
}

.aluno-login-texto {
    font-size: 14px;
    color: #0c0f1e;
    margin-bottom: 10px;
}

.aluno-recuperar-acesso-texto {
    font-size: 14px;
    color: #0c0f1e;
    margin-bottom: 10px;
    cursor: pointer;
}

.aluno-login-button-transparent {
    background: #1F2649;
    width: 182px;
    height: 45px;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #4C5687;
    font-weight: bold;
}

/*Animacoes transicao login-cadastro*/
@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.aluno-slide-in {
    animation: slideInFromRight 0.5s ease forwards;
}

.aluno-slide-out {
    animation: slideOutToLeft 0.5s ease forwards;
}

.aluno-pre-animation {
    opacity: 0;
    transform: translateX(100%);
}