/* Global styles */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background {
    background-image: url('IEHP_bg_image.jpeg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form container styles */
.container {
    width: 400px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
}

/* Heading styles */
h2 {
    text-align: center; /* Center align heading */
    margin-bottom: 30px; /* Add space below heading */
    color: #007bff; /* Blue color for heading */
}

/* Input field styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    color: #333; /* Dark gray color for labels */
}

input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc; /* Light border color */
    border-radius: 5px;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #007bff; /* Blue border color on focus */
    outline: none; /* Remove default focus outline */
}

input[type="date"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc; /* Light border color */
    border-radius: 5px;
    transition: border-color 0.3s;
}

input[type="date"]:focus {
    border-color: #007bff; /* Blue border color on focus */
    outline: none; /* Remove default focus outline */
}


/* Submit button styles */
input[type="submit"] {
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
}

th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #007bff;
    color: white;
}

/* Adjust column widths */
td:nth-child(2) {
    width: 35%; /* Adjust as needed */
}

td:nth-child(1) {
    width: 25%;
}
td:nth-child(3) {
    width: 40%; /* Adjust as needed */
}

input[type="text"]::placeholder {
    color: #999; /* Light gray color */
}

input[type="date"]::placeholder {
    color: #999; /* Light gray color */
}

/* .dob-input {
    display: flex;
    align-items: center;
}

.dob-input input {
    width: 100px;
    text-align: center;
    margin-right: 5px;
}

.dob-input span {
    margin: 0 50px;
} */

/* .dob-input input {
    width: 150px; 
    text-align: center;
    margin-right: 5px;
} */

/* .dob-input {
    position: relative;
    display: inline-block;
}

.date-picker {
    width: 150px; 
    text-align: center;
    padding-right: 30px; 
    background: url('Group 2634.png') no-repeat right center;
    background-size: 20px 20px; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.date-picker::-webkit-calendar-picker-indicator {
    opacity: 0; Make the default indicator invisible
    cursor: pointer;
} */

.alert {
    margin-top: 15px;
    padding: 5px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
