/**
 * Ziko Auth Pages - Login, Register, Forgot Password
 */

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

body {
    font-family: 'Heebo', sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.auth-logo {
    text-align: center;
    margin-block-end: 24px;
}

.auth-logo a {
    text-decoration: none;
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 32px;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    margin-block-end: 4px;
}

.auth-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-block-end: 24px;
}

.form-group {
    margin-block-end: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    margin-block-end: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s;
}

.form-input:focus {
    outline: none;
    border-color: #c41e3a;
    box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #a01830;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-block-end: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.magic-info {
    text-align: center;
    margin-block-start: 20px;
    padding-block-start: 20px;
    border-block-start: 1px solid #e2e8f0;
}

.magic-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.magic-info i {
    font-size: 32px;
    color: #c41e3a;
    margin-block-end: 12px;
}

.back-link {
    display: block;
    text-align: center;
    margin-block-start: 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    color: #c41e3a;
}
