:root {
    --blue-base: #18578C;
    --blue-dark: #12466F;
}

/* ===== BACKGROUND ===== */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    background:
        linear-gradient(rgba(24,87,140,0.7), rgba(18,70,111,0.8)),
        url("https://wallpapers.com/images/hd/business-growth-r82mri4n6cbnyt5t.jpg");
    background-size: cover;
    background-position: center;
}

/* ===== TOP & BOTTOM ===== */
.top-bar,
.bottom-bar {
    padding: 14px;
    background: linear-gradient(180deg, var(--blue-base), var(--blue-dark));
    color: #fff;
    text-align: center;
    font-size: 13px;
}

/* ===== CONTAINER ===== */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CARD ===== */
.card {
    background: rgba(255,255,255,0.95);
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* ===== HEADER ===== */
.card-header {
    background: #ffffff;          /* branco */
    padding: 22px;
    border-bottom: 1px solid #e5e7eb; /* linha sutil de separação */
    border-radius: 14px 14px 0 0;
}


.header-logo {
    display: block;
    margin: 0 auto;
    max-width: 70%;
}

/* ===== BODY ===== */
.card-body {
    padding: 26px;
}

.field {
    margin-bottom: 14px;
}

label {
    font-size: 13px;
    color: #374151;
}

/* ===== INPUT COM ÍCONE (CORRIGIDO) ===== */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
}

/* 🔥 AQUI ESTÁ O CONSERTO */
.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 10px 14px 10px 42px; /* ← espaço REAL pro placeholder */
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--blue-base);
}

/* ===== BOTÃO ===== */
.btn-primary {
    background: linear-gradient(180deg, var(--blue-base), var(--blue-dark));
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

/* ===== ERRO ===== */
.notification {
    background: #dc3545;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
}
