* {
    box-sizing: border-box;
}

body {
    background-image: url('bg image.jpg');
    font-family: Arial, sans-serif;
    direction: ltr; /* Adjust direction based on language */


   border: 5px solid deeppink; /* يمكنك تغيير اللون والسُمك حسب رغبتك */
   margin: 10PX; /* للتأكد من أن الحدود تلتصق بأطراف الصفحة */
    height: 445vh;


}



/* RTL styling for Arabic */
.container {
    width: 80%;
    margin: auto;
    max-width: 800px;
    padding: 20px;
}

#Additional_information{
    padding: 50px;
}


.language-switcher {
    text-align: right;
    margin-bottom: 20px;
}

h2, h3 {

    text-transform: uppercase;
    text-align: center;
    color:white;
}



label {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-container {
    display: flex;
    justify-content: center; /* لتوسيط الزر أفقيًا */
    align-items: center; /* لتوسيط الزر عموديًا */
    height: 10vh; /* لملء كامل ارتفاع الصفحة */
    background-color: white;
    padding:1px;

}

.centered {
    display: flex;
    justify-content: center; /* لتوسيط العنصر أفقيًا */
    align-items: center; /* لتوسيط العنصر عموديًا */
    height: 10vh; /* لملء كامل ارتفاع الصفحة */
}

.underline {
    display: inline-block; /* لتحديد عرض السطر السفلي بطول النص */
    border-bottom: 2px solid white; /* إضافة السطر أسفل النص، يمكنك تخصيص اللون والسُمك */
    padding-bottom: 4px; /* مسافة صغيرة بين النص والسطر */
}



button[type="submit"] {
    text-align: center;
    display: inline-block;
    padding: 10px 15px;
    background-color: white;
    color:blueviolet;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

button[type="submit"]:hover {
    background-color: blue;
}
.custom-file-upload {


    cursor: pointer;
    display: inline-block;
}

.file-name {
    margin-left: 10px;
    font-size: 14px;
}
