.expired-page {
    font-family: 'Inter', sans-serif;
    background: #f1f3f6;
}

/* Header */
.expired-page .header {
    background: #2f4154;
    padding: 16px 0;
    text-align: center;
}

.expired-page .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.expired-page main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
}

/* Card */
.expired-page .expired-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    padding: 40px;
    width: 90%;
    max-width: 1050px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    gap: 40px;
}

/* Left Image */
.expired-page .left-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.expired-page .left-section img {
    max-width: 420px;
    width: 100%;
}

/* Right Content */
.expired-page .right-section {
    flex: 1;
    text-align: center;
}

/* Logo */
.expired-page .company-logo img {
    width: 120px;
    margin-bottom: 15px;
}

/* Heading */
.expired-page .identity {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

/* Message */
.expired-page .message {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Button */
.expired-page .cta-button {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.expired-page .cta-button:hover {
    background: #c62828;
    transform: translateY(-2px);
}

.expired-page .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.expired-page .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    display: flex;
    overflow: hidden;
}

/* Left */
.expired-page .popup-left {
    flex: 1;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.expired-page .popup-left img {
    max-width: 300px;
}

/* Right */
.expired-page .popup-right {
    flex: 1;
    padding: 30px;
    position: relative;
}

/* Close */
.expired-page .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eee;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* Form */
.expired-page .form-group {
    margin-bottom: 12px;
}

.expired-page .form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.expired-page .submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #f44336;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}


.expired-page .success-popup {
    display: flex;
}

.expired-page .success-right {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.expired-page .visit-btn {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
}

@media (max-width: 768px) {

    .expired-page .expired-container {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .expired-page .left-section img {
        max-width: 260px;
    }

    .expired-page .popup {
        flex-direction: column;
    }
}