/* Reset & Global Styles */
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(to bottom, #fff, #b3daff);
    font-family: Arial, sans-serif;
}

/* ✅ Larger Logo */
.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 200px; /* Increased from 150px */
}

/* Payment Box */
.payment-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 350px;
    text-align: center;
}

/* ✅ Secure Payment Title - Now Black */
.payment-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #000; /* Changed to black */
    margin-bottom: 10px;
    justify-content: flex-start;
}

.payment-title img {
    width: 20px;
    margin-right: 8px;
}

/* ✅ Card Holder & Card Number - Now Black */
.input-container label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
    color: #000; /* Changed to black */
}

/* Input Containers */
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
}

/* ✅ Ensure All Inputs Have the Same Height */
.payment-box input {
    width: 80%;
    height: 25px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* Expiry & CVV */
.card-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.card-details .input-container {
    width: 50%;
}

.card-details input {
    width: 70%;
    height: 20px;
}

/* ✅ Red Submit Button */
.pay-btn {
    width: 100%;
    padding: 10px;
    background: #e54513; /* Changed to red */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.pay-btn:hover {
    background: #c83e10;
}

/* Payment Info */
.payment-info {
    font-size: 12px;
    margin-top: 10px;
}

.payment-info a {
    color: #007bff;
    text-decoration: none;
}

/* Payment Logos */
.payment-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.payment-logos img {
    height: 25px;
}

/* Payment Footer */
.payment-footer {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

/* ✅ Responsive Fixes */
@media (max-width: 480px) {
    .payment-box {
        width: 95%;
        padding: 15px;
    }

    .card-details {
        flex-direction: column;
    }

    .card-details .input-container {
        width: 100%;
    }
}
