/* ===== CONTAINER GERAL ===== */
.monitora-auth-wrapper {
    min-height: 100vh;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Helvetica', Arial, sans-serif;
}

/* ===== CARD ===== */
.monitora-auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    padding: 40px 48px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* ===== TABS ===== */
.monitora-auth-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.monitora-auth-tabs a {
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 12px;
    color: #94a3b8;
    position: relative;
}

.monitora-auth-tabs a.active {
    color: #0f172a;
}

.monitora-auth-tabs a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #f5b938;
    border-radius: 3px;
}

/* ===== TÍTULOS ===== */
.monitora-auth-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.monitora-auth-card p.subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
}

/* ===== FORM ===== */
.monitora-auth-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.monitora-auth-card form.single {
    grid-template-columns: 1fr;
}

/* ===== INPUTS ===== */
.monitora-auth-card input,
.monitora-auth-card select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 14px;
    color: #0f172a;
    transition: border 0.2s, box-shadow 0.2s;
}

.monitora-auth-card input::placeholder {
    color: #94a3b8;
}

.monitora-auth-card input:focus,
.monitora-auth-card select:focus {
    outline: none;
    border-color: #f5b938;
    box-shadow: 0 0 0 3px rgba(245, 185, 56, 0.15);
}

/* ===== SELECT ===== */
.monitora-auth-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%2394a3b8' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

/* ===== LINHA ENDEREÇO ===== */
.monitora-auth-card .full {
    grid-column: 1 / -1;
}

/* ===== BOTÃO ===== */
.monitora-auth-card button {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #f5b938;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.monitora-auth-card button:hover {
    background: #e6aa2f;
    box-shadow: 0 10px 20px rgba(245, 185, 56, 0.3);
}

.monitora-auth-card button:active {
    transform: scale(0.98);
}

/* ===== RADIO TIPO PESSOA ===== */
.monitora-auth-radio {
    grid-column: 1 / -1;
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.monitora-auth-radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 640px) {
    .monitora-auth-card {
        padding: 32px 24px;
    }

    .monitora-auth-card form {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.monitora-auth-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}
