/* Pay Now Page Styles */
.pay-now-page-bg {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(34, 53, 64, 0.85), rgba(34, 53, 64, 0.85)), url('../images/login-bg.jpg') center/cover no-repeat;
    padding: 60px 20px;
    min-height: calc(100vh - 150px);
}

.payment-container {
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Left Column: Form */
.left-col {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.header-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 50px;
}

.logo-area {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 24px;
    color: #00467f;
    line-height: 1.1;
}
.logo-area img {
    height: 40px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}

.btn-back {
    color: #188bf6;
    border: 1px solid #188bf6;
    background: transparent;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}
.btn-back:hover {
    background: #f0f7ff;
    color: #0056b3;
    text-decoration: none;
}

.pay-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pay-subheading {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid #e0e6ed;
    font-size: 14px;
    margin-bottom: 15px;
    box-shadow: none;
}
.form-control:focus {
    border-color: #188bf6;
    box-shadow: 0 0 0 0.2rem rgba(24, 139, 246, 0.1);
}
.form-control::placeholder {
    color: #a0aab5;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-container {
        flex-direction: column;
    }
    .left-col {
        padding: 30px 20px;
    }
}
