﻿.aluno-cadastro-background {
    background: #030617;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px;
}

.aluno-cadastro-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;
}

.aluno-cadastro-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-cadastro-logo {
    width: 253px;
    height: 40.84px;
}

.aluno-cadastro-texto {
    font-size: 14px;
    color: #0c0f1e;
    margin-bottom: 10px;
}

.aluno-cadastro-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-material-icons {
    font-size: 20px;
}

.aluno-icone-transparente {
    background-color: transparent !important;
    box-shadow: none !important;
}

.aluno-cadastro-input::placeholder {
    font-family: Arial;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    left: 30px;
    top: 15px;
}

.aluno-cadastro-button {
    background: #0C0F1E;
    width: 182px;
    height: 45px;
    border-radius: 20px;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #4C5687;
    font-weight: bold;
}

.aluno-cadastro-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%);
}