/* Login Page Enhancements */

/* Full Page Background */
.zMain-signLog {
    background-color: #f8fafc !important;
    /* Slate 50 w-full min-h-screen flex items-center justify-center */
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem !important;
}

/* Card Styling */
.zMain-signLog-wrap {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    padding: 3rem !important;
    width: 100% !important;
    max-width: 480px !important;
    border: 1px solid #e2e8f0;
    margin: 0 auto !important;
}

/* Logo Area */
.zMain-signLog-wrap .pb-34 {
    text-align: center;
    padding-bottom: 2rem !important;
}

.zMain-signLog-wrap .pb-34 img {
    height: 40px;
    object-fit: contain;
}

/* Typography */
h4.fs-32 {
    font-size: 1.875rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    /* Slate 800 */
    text-align: center;
    margin-bottom: 0.5rem !important;
}

h6.fs-14 {
    text-align: center;
    color: #64748b !important;
    /* Slate 500 */
    font-weight: 400 !important;
}

h6.fs-14 a {
    color: #2563eb !important;
    /* Primary Blue */
    font-weight: 600 !important;
    text-decoration: none;
}

h6.fs-14 a:hover {
    text-decoration: underline;
}

/* Form Inputs */
.zForm-wrap label.zForm-label {
    color: #334155 !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem;
}

.form-control.zForm-control {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    background-color: #f8fafc !important;
    transition: all 0.2s ease;
    height: auto !important;
}

.form-control.zForm-control:focus {
    border-color: #2563eb !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

/* Password Eye Icon */
.zForm-password .icon {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 1rem !important;
}

/* Checkbox */
.form-check-input {
    width: 1.1em;
    height: 1.1em;
    margin-top: 0.2em;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

.form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.form-check-label {
    color: #475569;
    font-weight: 500;
}

/* Forgot Password */
.text-main-color {
    color: #2563eb !important;
    font-weight: 500 !important;
}

/* Primary Button */
button[type="submit"] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.875rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* Social Login Divider */
.under-border-one {
    border-bottom: 1px solid #e2e8f0 !important;
    margin: 2rem 0 !important;
}

.under-border-one span {
    background-color: #ffffff !important;
    color: #64748b !important;
    padding: 0 1rem !important;
    font-weight: 500 !important;
}

/* Social Buttons */
ul.g-10 {
    gap: 1rem !important;
}

.w-56.h-56 {
    width: 48px !important;
    height: 48px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}

.w-56.h-56:hover {
    background-color: #f8fafc !important;
    border-color: #cbd5e1 !important;
    transform: translateY(-2px);
}

/* Helper Text */
.login-info-table {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.login-info-table td {
    background: transparent !important;
    border: none !important;
    color: #475569;
}