.me-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
    padding: 10px 10px 10px 10px;
    /* max-width: 440px; */
    /* margin: 30px auto; */
}

.me-button-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.me-label {
    padding-bottom: 10px;
}

.me-form-style, .me-form-style-select, .me-form-style-textarea {
    padding: 10px;
    font-size: 1rem;
    /* border: 1px solid #b5c6d6;
    border-radius: 6px; */
    background: white;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.2s, box-shadow 0.2s;
}
.me-form-style {
    /* max-width: 500px; */
    /* margin: auto;
    display: flex; */
    flex-direction: column;
}



.me-form-style input,
.me-form-style select,
.me-form-style textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #b5c6d6;
    border-radius: 6px;
    background: #f5faff;
    margin: 5px 10px 5px 0; 
    width: 100%;
    box-sizing: border-box;
    transition: border 0.2s, box-shadow 0.2s;
}

.me-form-style input:focus,
.me-form-style select:focus {
    border: 1.5px solid #3498db;
    outline: none;
    box-shadow: 0 0 0 2px #e3f1fd;
}
