﻿.form-containerf {
    width: 90%;
    max-width: 400px;
    background: white;
    padding: 15px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-headerf {
    background: #3d92df;
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.requiredf {
    background: red;
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.form-groupf {
    display: flex;
    align-items: center;
    background: #e9f4fe;
    padding: 5px;
    border-radius: 5px;
    margin-top: 8px;
}

    .form-groupf label {
        width: 30%;
        font-weight: bold;
        color: #3d92df;
        padding-left: 5px;
    }

    .form-groupf select,
    .form-groupf input {
        width: 70%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }

.submit-btnf {
    background: red;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.form-checkf {
    margin-top: 10px;
    font-size: 13px;
}

    .form-checkf label {
        display: inline;
    }

textareaf {
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
}
