/* FOR FORM */
/* Container to center and hold the form */
.form-container {
    width: 100%;
    /* max-width: 500px; */
}

/* Container to center and hold the form */
.form-container {
    width: 100%;
    /* max-width: 500px; */
}

/* Card-like styling for the form */
.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.form-title {
    font-size: 2em;
    /* font-size: 2.5em; */
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1em;
    color: #777;
    margin-bottom: 30px;
}

/* Input field styling using floating labels */
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #555;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Style for the floating labels */
.form-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
    font-size: .9em;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea+label {
    top: 15px;
    transform: translateY(0);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8em;
    color: #007bff;
    background-color: #ffffff;
    padding: 0 5px;
}

/* Submit button styling */
.submit-btn {
    width: 100%;
    background-color: #03346b;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.submit-btn:active {
    background-color: #004494;
    transform: translateY(0);
}