body.auth-page {
    margin: 0;
    min-height: 100vh;
    background: #7a7a7a;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 430px;
    background: #f4f4f4;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 30px 26px 26px;
}

.auth-brand {
    text-align: center;
    margin-bottom: 24px;
}

.auth-brand img {
    max-width: 180px;
    height: auto;
}

.auth-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.auth-icon {
    color: #1f6feb;
    margin-right: 8px;
}

.auth-form-group {
    margin-bottom: 14px;
}

.auth-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
}

.auth-input-icon {
    width: 42px;
    text-align: center;
    color: #1b2a41;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    padding: 12px 0;
}

.auth-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 16px;
    background: #fff;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.auth-input-action {
    width: 42px;
    text-align: center;
    color: #1b2a41;
    cursor: pointer;
    background: #fff;
}

.auth-btn-primary {
    width: 100%;
    border: none;
    background: #1f6feb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.auth-btn-primary:hover {
    background: #1459c7;
}

.auth-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border: 1px solid #8b939f;
    color: #6b7280;
    background: transparent;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 14px;
    box-sizing: border-box;
}

.auth-links {
    text-align: center;
    margin-top: 14px;
}

.auth-links a {
    color: #1f6feb;
    text-decoration: underline;
    font-size: 15px;
}

.auth-check-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px 0 18px;
    color: #444;
}

.auth-alert {
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

.auth-alert-danger {
    background: #ffe8e8;
    color: #b42318;
    border: 1px solid #f3b5b5;
}

.auth-alert-success {
    background: #eafaf0;
    color: #18794e;
    border: 1px solid #b7e3c7;
}