.flipalbum-registration-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.flipalbum-registration-header {
    text-align: center;
    margin-bottom: 30px;
}

.flipalbum-registration-header h2 {
    color: #4a4a4a;
    margin-bottom: 10px;
    font-size: 28px;
}

.flipalbum-registration-header h2 i {
    color: #6c63ff;
    margin-right: 10px;
}

.flipalbum-registration-header p {
    color: #7a7a7a;
    font-size: 16px;
}

.flipalbum-registration-form .form-group {
    margin-bottom: 20px;
}

.flipalbum-registration-form label {
    display: block;
    margin-bottom: 8px;
    color: #4a4a4a;
    font-weight: 600;
}

.flipalbum-registration-form label i {
    margin-right: 8px;
    color: #6c63ff;
    width: 20px;
    text-align: center;
}

.flipalbum-registration-form input[type="text"],
.flipalbum-registration-form input[type="email"],
.flipalbum-registration-form input[type="tel"],
.flipalbum-registration-form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.flipalbum-registration-form input[type="text"]:focus,
.flipalbum-registration-form input[type="email"]:focus,
.flipalbum-registration-form input[type="tel"]:focus,
.flipalbum-registration-form input[type="password"]:focus {
    border-color: #6c63ff;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
    outline: none;
}

.subscription-plan {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border: 1px solid #e6e6ff;
}

.plan-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.plan-header i {
    font-size: 24px;
    color: #ffb74d;
    margin-right: 10px;
}

.plan-header h3 {
    margin: 0;
    color: #4a4a4a;
    font-size: 20px;
}

.plan-price {
    font-size: 28px;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 15px;
}

.plan-price span {
    font-size: 16px;
    font-weight: normal;
    color: #7a7a7a;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 8px 0;
    color: #5a5a5a;
}

.plan-features li i {
    color: #4caf50;
    margin-right: 10px;
}

.payment-section {
    margin: 30px 0;
}

.payment-section h3 {
    color: #4a4a4a;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.payment-section h3 i {
    color: #6c63ff;
    margin-right: 10px;
}

.payment-method {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e6e6ff;
}

.payment-method.active {
    border-color: #6c63ff;
}

.payment-option-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.payment-option-header i {
    font-size: 24px;
    color: #6c63ff;
    margin-right: 10px;
}

.payment-option-header h4 {
    margin: 0;
    color: #4a4a4a;
    font-size: 18px;
}

.upi-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.upi-id {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #eee;
}

.upi-id span {
    display: block;
    color: #7a7a7a;
    font-size: 14px;
    margin-bottom: 5px;
}

.upi-id strong {
    display: block;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 10px;
    word-break: break-all;
}

.copy-btn {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #5a52d6;
}

.copy-btn i {
    margin-right: 5px;
}

.upi-qr-code {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.upi-qr-code img {
    max-width: 200px;
    height: auto;
    border: 1px solid #eee;
    border-radius: 6px;
}

.upi-qr-code p {
    margin-top: 10px;
    color: #7a7a7a;
    font-size: 14px;
}

.payment-verification {
    margin-top: 20px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.submit-btn:hover {
    background: #5a52d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.loading-spinner {
    display: inline-flex;
    align-items: center;
}

.loading-spinner i {
    margin-right: 8px;
}

.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.form-messages.success {
    background: #e8f5e9;
    color: #4caf50;
    border: 1px solid #c8e6c9;
    display: block;
}

.form-messages.error {
    background: #ffebee;
    color: #f44336;
    border: 1px solid #ffcdd2;
    display: block;
}

@media (max-width: 768px) {
    .flipalbum-registration-container {
        padding: 20px;
    }
    
    .upi-details {
        flex-direction: column;
    }
    
    .upi-id, .upi-qr-code {
        width: 100%;
    }
}
.file-help {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}
.subscription-plan-box {
    background: #fff9f0;
    border: 2px dashed #f39c12;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    color: #2d3436;
    margin-bottom: 6px;
}

.plan-title .discounted-price {
    color: #e67e22;
    font-size: 24px;
    font-weight: bold;
}

.plan-title .original-price {
    color: #b2bec3;
    font-size: 16px;
    text-decoration: line-through;
    margin-left: 10px;
    vertical-align: middle;
}

.plan-subtext {
    font-size: 14px;
    color: #d35400;
    margin-bottom: 12px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 15px;
    margin: 6px 0;
    color: #34495e;
}

.plan-features i {
    color: #27ae60;
    margin-right: 8px;
}
.payment-section-modern {
    background: #f0f9ff;
    border: 2px dashed #0984e3;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-section-modern h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #0984e3;
}

.upi-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.upi-info {
    flex: 1;
}

.upi-label {
    font-weight: 500;
    color: #2d3436;
    margin-bottom: 5px;
}

.upi-id-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    font-size: 16px;
}

.copy-btn {
    background: #00b894;
    color: #fff;
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.copy-btn:hover {
    background: #019875;
}

.upi-qr {
    flex-shrink: 0;
    text-align: center;
}

.upi-qr img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid #dfe6e9;
    background: #fff;
    padding: 5px;
}

.upi-qr p {
    margin-top: 10px;
    font-weight: 500;
    color: #2d3436;
}
.payment-wrapper-modern {
    margin-top: 40px;
    background: #f8fafd;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.pay-now-heading {
    text-align: center;
    margin-bottom: 30px;
}

.pay-now-heading h2 {
    font-size: 28px;
    color: #0984e3;
    margin-bottom: 5px;
}

.pay-now-heading p {
    color: #636e72;
    font-size: 15px;
}

.after-payment-details {
    margin-top: 30px;
    padding: 15px;
    border-left: 4px solid #0984e3;
    background: #ecf5ff;
    border-radius: 8px;
}

.after-payment-details h3 {
    font-size: 18px;
    color: #2d3436;
    margin-bottom: 8px;
}

.after-payment-details p {
    margin: 0;
    color: #636e72;
}

