.form-container {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    color: white; /* Make text white */
    text-align: center; /* Center-align all content inside the form */
}

.card-container {
    background-color: #333;
    color: white; /* Make text white */
}

.form-container input {
    background-color: #ccc; /* Light gray background */
    color: #066173; /* Black text for contrast */
    border: 1px solid #aaa; /* Optional: Add a border */
    border-radius: 5px; /* Optional: Rounded corners */
    padding: 10px; /* Optional: Add padding */
}

.form-container button {
    background-color: #066173; /* Blue background */
    color: white; /* White text */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px; /* Add padding */
    cursor: pointer; /* Change cursor to pointer */
    display: inline-block; /* Ensure buttons are inline elements */
    margin: 5px auto; /* Add spacing and center buttons */
}

.form-container button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.custom-card {
    background-color: black !important; /* Dark blue background */
    color: white !important; /* White text for contrast */
    border-radius: 10px !important; /* Rounded corners */
    padding: 15px !important; /* Add padding inside the card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important; /* Add a subtle shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease !important; /* Smooth hover effect */
}

.custom-card:hover {
    transform: scale(1.05) !important; /* Slightly enlarge the card on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3) !important; /* Enhance shadow on hover */
}

.custom-card img {
    border-radius: 10px; /* Match the card's rounded corners */
}

h2 {
    font-size: 2.5rem; /* Adjust the font size */
    font-weight: bold; /* Make the text bold */
    color: #ffffff; /* Set the text color to white */
    /*text-transform: uppercase; /* Make the text uppercase */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle shadow */
    margin-bottom: 20px; /* Add spacing below the heading */
}

.h1-white {
    color: white;
    font-size: 2.5rem; /* Adjust size as needed */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Optional shadow */
}

.h4-white {
    color: white;
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: normal;
}

.h5-white {
    color: white;
    font-size: 1.25rem; /* Adjust size as needed */
    font-weight: lighter;
}