/* /static/login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Cor de fundo alterada conforme solicitado */
    background-color: rgba(38, 38, 38, 80.05);
    color: #F4F4F5;

    /* Se você tiver uma imagem de fundo (como a das árvores),
       descomente e ajuste as linhas abaixo: */
    /*
    background-image: url('sua-imagem-de-fundo.jpg');
    background-size: cover;
    background-position: center;
    */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-box {
    width: 420px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Efeito de vidro fosco */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem; /* Mantém o espaçamento que o h2 tinha */
}

.logo-container img {
    max-width: 180px; /* Você pode ajustar este tamanho */
    height: auto;
}

.input-group {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #eee;
}

.input-group input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    color: #fff;
    padding: 0 5px 0 35px; /* Espaço para o ícone */
}

.input-group i {
    position: absolute;
    left: 8px;
    bottom: 15px;
    font-size: 1.2rem;
    color: #eee;
}

.options-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.options-row label {
    cursor: pointer;
}

.options-row a {
    color: #eee;
    text-decoration: none;
}

.options-row a:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #f0f0f0;
}

.register-link {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
}

.register-link p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.register-link p a:hover {
    text-decoration: underline;
}

#message {
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
}