/* ============================================= */
/* ESTILOS GLOBAIS */
/* ============================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* ============================================= */
/* CONTAINER PRINCIPAL */
/* ============================================= */

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* ============================================= */
/* CARD DE LOGIN */
/* ============================================= */

.login-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================= */
/* CABEÇALHO DO LOGIN */
/* ============================================= */

.login-header {
    background-image: url('/static/requerente/img/banerlogin.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
}

.login-header h2 {
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* ============================================= */
/* FORMULÁRIO DE LOGIN */
/* ============================================= */

.login-form {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form label {
    font-size: 14px;
    color: #555;
}

.login-form input {
    padding: 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

/* ============================================= */
/* BOTÃO DE LOGIN */
/* ============================================= */

.login-btn {
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.login-btn:hover {
    transform: scale(1.03);
}

/* ============================================= */
/* MEDIA QUERIES - RESPONSIVIDADE */
/* ============================================= */

@media (max-width: 480px) {
    .login-header {
        padding: 40px 10px;
    }

    .login-form {
        padding: 20px 15px;
    }
}