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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    height: 100vh;
    overflow: hidden;
} */

body, html{
    overflow-x: hidden;
    overflow-y: auto;
}
#wpadminbar{display:none !important; }
/* Main Container with Background */
.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: url('/wp-content/uploads/2025/11/login-background-scaled.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay on background */
    backdrop-filter: blur(8px);
    z-index: 0;
}

/* Centered Card Wrapper */
.login-card {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

/* Left Column (Inside Card) */
.left-column {
    width: 67%;
    position: relative;
    /* Removed background-image from here */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Gradient Overlay for Left Column Only */
.left-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
    z-index: 1;
}

.left-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(124, 58, 237, 0.85) 100%);
    z-index: 1;
}

.left-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo-white {
    margin-bottom: 60px;
}

.logo-img-white {
    height: 300px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    display: block;
    left:0;
    right:0;
    background: linear-gradient(348deg, rgb(30 58 138 / 0%) 0%, rgb(124 58 237 / 0%) 100%);
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 48px;
    line-height: 1.6;
    opacity: 0.95;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.star-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

/* Right Column */
.right-column {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.welcome-heading {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.login-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #111827;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s, background-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
    background-color: #ffffff;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.signin-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.signin-btn:hover {
    background-color: #1d4ed8;
}

.signin-btn:active {
    background-color: #1e40af;
}

.signup-link {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.signup-text {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.signup-text:hover {
    color: #6d28d9;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        align-items: center;
        padding: 20px;
    }
    
    .login-card {
        flex-direction: column;
    }

    .left-column {
        width: 100%;
        min-height: 300px;
        padding: 40px 0;
    }

    .right-column {
        width: 100%;
        padding: 40px;
    }

    .main-heading {
        font-size: 32px;
    }

    .left-content {
        padding: 40px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-white {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .logo-img-white {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .left-content {
        padding: 30px;
        text-align: center;
    }
    
    .features-list {
        align-items: center;
    }

    .login-form-container {
        padding: 30px;
    }

    .features-list {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .left-column {
        min-height: 300px;
        padding: 30px 0;
    }

    .logo-img-white {
        height: 150px;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .star-icon {
        margin-bottom: 8px;
    }

    .login-form-container {
        padding: 24px 20px;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .welcome-heading {
        font-size: 24px;
    }
}

/* Popup/Alert Message Styles */
.popup-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #2563eb;
}

.alert-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    color: #10b981;
}

.alert-danger .alert-icon {
    color: #ef4444;
}

.alert-info .alert-icon {
    color: #2563eb;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.alert-close:hover {
    opacity: 1;
}

/* Form Validation Styles */
.form-group input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group input.error:focus {
    border-color: #ef4444;
    background-color: #ffffff;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.form-group input.success {
    border-color: #10b981;
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-popup {
    background-color: #2d2d2d;
    border-radius: 12px;
    padding: 24px;
    min-width: 320px;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-popup {
    transform: scale(1);
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #404040;
}

.modal-message {
    font-size: 14px;
    color: #e5e5e5;
    line-height: 1.5;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modal-ok-btn {
    background-color: #f472b6;
    color: #ffffff;
    border: 1px solid #ec4899;
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.modal-ok-btn:hover {
    background-color: #ec4899;
    border-color: #db2777;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.modal-ok-btn:active {
    transform: translateY(0);
}