*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body.expired-page{
    font-family:'Inter',sans-serif;
    background:#f3f5f7;
    min-height:100vh;
    overflow-x:hidden;
}

.header{
    background:#2f4154;
    padding:22px 20px;
}

.logo-text{
    text-align:center;
    color:#fff;
    font-size:34px;
    font-weight:800;
}

main{
    min-height:calc(100vh - 90px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.expired-container{
    width:100%;
    max-width:1180px;
    background:#fff;
    border-radius:24px;
    padding:55px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.left-section,
.right-section{
    flex:1;
}

.left-section{
    display:flex;
    justify-content:center;
}

.left-section img{
    width:100%;
    max-width:500px;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}

.right-section{
    text-align:center;
}

.company-logo img{
    width:140px;
    border-radius:12px;
}

.identity{
    font-size:42px;
    font-weight:800;
    color:#1f2937;
    margin:20px 0;
}

.message{
    font-size:18px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:30px;
}

.cta-button,
.submit-btn,
.visit-btn{
    border:none;
    cursor:pointer;
    transition:0.3s ease;
}

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    border-radius:999px;
    background:linear-gradient(135deg,#ff5b4d,#f44336);
    color:#fff;
    font-weight:700;
    font-size:16px;
}

.cta-button:hover,
.submit-btn:hover,
.visit-btn:hover{
    transform:translateY(-2px);
}

.popup-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.7);
    z-index:9999;
    padding:20px;
}

.popup{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:flex;
}

.popup-left{
    flex:1;
    background:#f8fafc;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.popup-left img{
    width:100%;
    max-width:340px;
}

.popup-right,
.success-right{
    flex:1;
    padding:45px;
    position:relative;
}

.popup-right h2,
.success-right h2{
    font-size:34px;
    margin-bottom:10px;
}

.popup-right p,
.success-right p{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:28px;
}

.close-btn{
    position:absolute;
    top:18px;
    right:18px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    cursor:pointer;
    font-size:20px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input{
    width:100%;
    height:52px;
    border:1px solid #d1d5db;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
}

.form-group input:focus{
    outline:none;
    border-color:#f44336;
}

.submit-btn{
    width:100%;
    height:54px;
    border-radius:14px;
    background:linear-gradient(135deg,#ff5b4d,#f44336);
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.visit-btn{
    display:inline-block;
    text-decoration:none;
    background:#f44336;
    color:#fff;
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
}

@media(max-width:992px){

    .expired-container,
    .popup{
        flex-direction:column;
    }

    .identity{
        font-size:34px;
    }
}

@media(max-width:576px){

    .logo-text{
        font-size:24px;
    }

    .expired-container{
        padding:28px 20px;
    }

    .identity{
        font-size:28px;
    }

    .message{
        font-size:15px;
    }

    .cta-button{
        width:100%;
        justify-content:center;
    }
}