/* =====================================================================
   AUTH CSS - Estilo iOS card redondeado
   ===================================================================== */

.auth-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(180deg, #f0f5f2 0%, #e7efe9 100%);
}

.auth-container {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px 40px;
    box-shadow:
        0 1px 2px rgba(45, 95, 63, 0.04),
        0 8px 28px rgba(45, 95, 63, 0.08),
        0 20px 48px rgba(45, 95, 63, 0.06);
}

.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.auth-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.auth-icon svg { width: 36px; height: 36px; }

.auth-logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 6px;
    letter-spacing: -0.4px;
}

.auth-subtitle {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.auth-form {
    margin-top: 8px;
}

.auth-form .form-group {
    margin-bottom: 16px;
}

.auth-form label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    display: block;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e4ebe6;
    border-radius: 12px;
    background: #fafbfa;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    transition: all 150ms ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 95, 63, 0.08);
}

.auth-form .btn-block {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
    transition: all 150ms ease;
}
.auth-form .btn-block:hover {
    box-shadow: 0 6px 16px rgba(45, 95, 63, 0.25);
    transform: translateY(-1px);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 13px;
}

.auth-form .alert {
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}
