:root {
    --primary: #4b2c16;   /* azul moderno */
    --accent: #4b2c16;
    --bg: #f9fafb;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #0f172a;
    --radius: 16px;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: var(--card);
    width: 100%;
    max-width: 420px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    background: url(/media/imagens/logos/logo-seislagoas.png) center/contain;
    background-repeat: no-repeat;
}

h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-box {
    position: relative;
}
.input-box input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border 0.2s;
}
.input-box input:focus {
    border-color: var(--accent);
}
.input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 16px;
}

.text {
    font-size: 13px;
    color: var(--muted);
    text-align: right;
}
.text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.text a:hover { text-decoration: underline; }

.button input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}
.button input:hover {
    background: var(--accent);
}

.sign-up-text {
    font-size: 14px;
    margin-top: 12px;
    color: var(--muted);
}
.sign-up-text a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.sign-up-text a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
    padding: 32px 20px;
    }
}
