*{
    margin: 0; /* Remove a margem padrão */
    padding: 0; /* Remove o preenchimento padrão */
    box-sizing: border-box; /* Inclui bordas e preenchimento no tamanho total do elemento */
}
body{
    font-family: Arial, sans-serif; /* Define a fonte padrão */
}

.container{
    background-image: url('src/images/bg-01.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Define a altura da tela em view port height*/

    display: flex; /* Usando flexbox para centralizar o conteúdo */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

.container::before{
    content: ""; /* Necessário para criar um pseudo-elemento */
    position: absolute; /* Posiciona o pseudo-elemento */
    top: 0; /* Alinha ao topo */
    left: 0; /* Alinha à esquerda */
    width: 100%; /* Largura total */
    height: 100%; /* Altura total */
    background-color: rgba(255,255,255,0.9);
    
}

.login-form{
    border-radius: 10px; /* Bordas arredondadas */
    padding: 20px; /* Espaçamento interno */
    width: 500px; /* Largura do formulário */
    z-index: +1; /* Coloca na frente do conteúdo */
    background: #9152f8;
    background: -webkit-linear-gradient(top, #7579ff, #b224ef);
    background: -o-linear-gradient(top, #7579ff, #b224ef);
    background: -moz-linear-gradient(top, #7579ff, #b224ef);
    background: linear-gradient(top, #7579ff, #b224ef);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.login-form form{
    display: flex; /* Usando flexbox para organizar os campos */
    flex-direction: column; /* Coloca os campos em coluna */    
    align-items: center; /* Centraliza os campos horizontalmente */

}

.login-form-logo{
    background-image: url('src/images/logo2.jpg'); /* Imagem de fundo */
    background-size: cover; /* Cobre todo o espaço do elemento */
    background-position: center; /* Centraliza a imagem */
    display: flex; /* Usando flexbox para organizar os campos */
    justify-content: center; /* Centraliza os campos horizontalmente */
    align-items: center; /* Centraliza os campos horizontalmente */
    margin-bottom: 20px; /* Espaçamento inferior */
    width: 120px; /* Largura do logo */
    height: 120px; /* Altura do logo */
    border-radius: 50%; /* Bordas arredondadas */

    margin-top: 25px; /* Espaçamento superior */
}

.form-title{
    font-size: 30px; /* Tamanho da fonte */
    color: #fff; /* Cor do texto */
    margin-bottom: 0px; /* Espaçamento inferior */
    font-weight: bold;
}

/*########## INPUTS ##########*/
.login-form input{
    width: 85%; /****ATENÇÃO: Mesma largura que o INPUT-WRAPPER*****/
    padding: 10px 0;
    font-size: 16px;
    color: #fff; /* ou #333 se o fundo for claro */
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    outline: none;
    transition: border-color 0.3s;
    font-family: Poppins, sans-serif;
    text-align: center; /* Centraliza o texto */
    margin-top: 25px; /* Espaçamento superior */
    justify-content: center; /* Centraliza os campos horizontalmente */
    align-items: center; /* Centraliza os campos horizontalmente */
}

.login-form input::placeholder{
    color: #fff; /* Cor do placeholder */
    opacity: 0.8; /* Opacidade do placeholder */
    transition: color
}

.login-form input:focus, .login-form button:focus{
    outline: none; /* Remove o contorno padrão */
    border-color: #007BFF; /* Muda a cor da borda ao focar */
}

input:focus::placeholder {
    color: transparent; /* Torna o placeholder invisível ao focar */
    transition: color 0.5s ease; /* Transição suave */
}
/*########## INPUTS ##########*/

/*########## WRAPPER ##########*/
.input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.input-wrapper::after {
    content: "";
    position: absolute;
    width: 85%;   /******ATENÇÃO: Mesma largura que o login-form input*****/
    height: 2px;
    background: linear-gradient(to right, #ffffff, #ffffff);
    bottom: 0;
    left: 50%; /* Posiciona no meio do container */
    transform: translateX(-50%) scaleX(0); /* Centraliza corretamente */
    transform-origin: center; /* Animação cresce do centro */
    transition: transform 0.4s ease;
}

.input-wrapper:focus-within::after {
    transform: translateX(-50%) scaleX(1); /* Mantém centralizado */
}
/*########## WRAPPER ##########*/
/*########## CHECKBOX ##########*/
/*align-self ---> testar */ 


/*########## CHECKBOX ##########*/

/*########## CHECKBOX ##########*/
/*########## BOTAO ##########*/

.login-form button {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    color: #555555;
    line-height: 1.2;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 120px;
    height: 50px;
    border-radius: 25px;

    margin-top: 20px; /* Espaçamento superior */

    background: #9152f8; /*Usado apenas caso navegador nao suporte 'gradient' abaixo*/
    background: -webkit-linear-gradient(bottom, #7579ff, #b224ef);
    background: -o-linear-gradient(bottom, #7579ff, #b224ef);
    background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
    background: linear-gradient(bottom, #7579ff, #b224ef);

    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;

    transition: all 0.4s ease;
}

.login-form button::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    top: 0;
    left: 0;
    opacity: 1;
    transition: all 0.4s ease;
}

.login-form button:hover {
    color: #fff;
}

.login-form button:hover::before {
    opacity: 0;
}
/*########## BOTAO ##########*/

/*########## FORGOT PASSWORD ##########*/
.forgot-password{
    font-size: 14px; /* Tamanho da fonte */
    color: #fff; /* Cor do texto */
    text-decoration: none; /* Remove o sublinhado */
    margin-top: 40px; /* Espaçamento superior */
    margin-bottom: 20px; /* Espaçamento inferior */
    color: #e5e5e5;
}
















