.FormContainer {
    max-width: 600px;
    margin: 50px auto; /* Center the form horizontally */
    padding: 50px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
    border-radius: 20px;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s ease-in-out;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], input[type="file"], select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: rgb(8, 3, 54);
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin: 10px 0;
}

button:hover {
    background-color: rgb(15, 4, 65);
}

.helper-text {
    display: none;
    background-color: #080436;
    color: #ffffff;
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
}

.hint {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
}

.hint:hover {
    color: #0056b3;
}
.success-message {
        background-color: #d4edda;
        color: #155724;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #c3e6cb;
        border-radius: 4px;
    }

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}
body{
    background: #344e68;
    font-family: Montserrat;
    color: rgb(52, 78, 104);
    gap: 0px;
}