/* Style the form container */

@font-face {
    font-family: 'Din';
    src: url('/fonts/DINNextLTArabicBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'dinfont';
    src: url('/fonts/DIN-Arabic.woff2') format('woff2');
    /* url('/fonts/ArbFONTS-harir-bold.otf') format('otf'); */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Din';
    font-weight: bold;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    /*background-color: #f9f9f9;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

/* Style the form fields */
.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="number"],
.form-container input[type="file"],
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-container textarea {
    height: 100px;
}

/* Style the submit button */
.form-container button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.form-container button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style the error messages */
.form-container p {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Add some style to the headings */
.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}
