﻿/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
}

/* Section Headers with Unique Colors */
.shipping-header {
    color: #1E90FF; /* Dodger Blue */
}

.billing-header {
    color: #FF4500; /* Orange Red */
}

.payment-header {
    color: #32CD32; /* Lime Green */
}

/* Form Styling */
form {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Form Labels */
label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="month"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Credit Card Images */
.credit-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Tooltip for CVV */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: black;
        color: white;
        text-align: center;
        border-radius: 5px;
        padding: 5px;
        position: absolute;
        z-index: 1;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }
