/* ITI Form Styles */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #2c2c2c;

}

.iti-form-container {
    background-color: #e4e3e3;
    border: 2px dotted #ccc;
    border-radius: 20px;
    padding: 30px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.iti-form-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.iti-form-label {
    /*font-weight: bold;*/
    margin-bottom: 5px;
    color: #333;
}

.iti-form-input,
.iti-form-textarea,
.iti-form-select {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-bottom: 2px solid #999;
    padding: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    outline: none;
}

.iti-form-input:focus,
.iti-form-textarea:focus,
.iti-form-select:focus {
    border-bottom-color: #007BFF;
}

.iti-form-submit-btn {
    width: 100%;
    background-color: #F44336;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.iti-form-submit-btn:hover {
    background-color: #D32F2F;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .iti-form-container {
        padding: 20px;
    }
}