/* Estilo geral do corpo da página de login */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
}

/* Container principal do formulário de login */
.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    width: 280px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 150, 255, 0.2);
}

/* Título do formulário */
h2 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

/* Agrupamento para rótulo e campo de entrada */
.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Estilo do rótulo */
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 150, 255, 0.3);
}

/* Estilo do campo de entrada de texto */
.input-group input {
    width: 100%;
    padding: 0.8rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Estilo do botão de submissão */
button {
    width: 100%;
    padding: 0.9rem;
    border: none;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    margin-top: 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efeito do botão ao passar o mouse por cima */
button:hover {
    background: linear-gradient(45deg, #0088cc, #006699);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Mensagem de erro */
.flash-message {
    margin-top: 1rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 5px;
    padding: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Responsividade para mobile */
@media (max-width: 600px) {
    .login-container {
        width: 85%;
        max-width: 260px;
        padding: 1rem;
    }
    
    body::before {
        background-size: 80% auto;
    }
} 