﻿@media only screen and (max-width: 768px) {
    .banner-down {
        padding: 45px; /* Padding for mobile and smaller screens */
    }
}

select#Input_Country {
    height: 48px;
}

select#Input_Type {
    height: 48px;
    border:1px solid #ccc;
}
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.amount {
    color: #667eea;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.selectable-div {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

    .selectable-div:hover {
        background-color: #f0f0f0;
    }

    .selectable-div.selected {
        border: 2px solid #ccc;
        background-color: lightblue;
    }

 
.payment-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

    .payment-option:hover {
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    }

    .payment-option.active {
        border-color: #667eea;
        background: #f4ca59;
        color: white;
    }

.payment-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.credit-card-icon {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paypal-icon {
    color: #0070ba;
}

.payment-option.active .credit-card-icon,
.payment-option.active .paypal-icon {
    color: white;
    -webkit-text-fill-color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row .form-group {
        flex: 1;
    }

.paypal-section {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #0070ba, #003087);
    border-radius: 12px;
    color: white;
}

    .paypal-section.active {
        display: block;
    }

    .paypal-section h3 {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .paypal-section p {
        opacity: 0.9;
        margin-bottom: 20px;
    }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

.security-info {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.security-icon {
    color: #4ecdc4;
    margin-right: 5px;
}

.error {
    border-color: #ff4757 !important;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1) !important;
}

.error-message {
    color: #ff4757;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

    .error-message.show {
        display: block;
    }

.form-input.valid {
    border-color: #2ed573;
    box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.1);
}

.validation-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.input-wrapper {
    position: relative;
}

.certficate-header {
    margin-top: 30px;
    margin-bottom: 30px;
}

b.strike {
    text-decoration-line: line-through;
    text-decoration-color: crimson;
    text-decoration-style: solid; /* solid | double | wavy | dotted | dashed */
    text-decoration-thickness: 2px;
}