/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    padding: 30px;
}

/* logo */
header {
            
            text-align: center; /* Center the logo horizontally */
        }

       

/* Centering the form */
.container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Header for the form */
h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    background-color: #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.progress-bar div {
    height: 10px;
    width: 33%; /* Adjust based on the step number */
    background-color: #3aaf4c;
    border-radius: 8px;
}

/* Form Elements */
label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: #2c3e50;
}


    select {
            width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
        }

        select option {
            padding: 10px;
            background-color: #ffffff;
            border: 1px solid #ddd;
            color: #333;
        }

        select option:hover {
            background-color: #f1f1f1;
        }
        
        
        
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="date"]
{
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #3aaf4c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

input[type="submit"]:hover {
    background-color: #0e631b;
}

/* Review Data Styling */
.review-data {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.review-data p {
    margin: 10px 0;
}

.review-data label {
    font-weight: normal;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}




.tooltip-container {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .tooltip {
            visibility: hidden;
            position: absolute;
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 5px;
            border-radius: 4px;
            bottom: 125%; /* Position above the question mark */
            left: 50%;
            margin-left: -60px; /* Center the tooltip */
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }

        .tooltip-container:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }
