body {
    font-family: 'Tajawal', sans-serif;
    background: url("../Images/BackGround.avif") no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}

.form-container {
    background: rgba(255, 255, 255, 1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    width: 40%;
    text-align: center;
}

    .form-container img {
        width: 100px;
        margin-bottom: 10px;
        border-radius : 50%;
    }

.form-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-group {
    flex-basis: 48%; /* كل عنصرين بجانب بعض */
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

    .input-group i {
        position: absolute;
        right: 10px;
        color: #666;
    }

    .input-group input, .input-group select {
        width: 100%;
        padding: 10px 35px 10px 10px;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

.form-container input[type="submit"] {
    background: #040443;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;

    background: #887C76 !important;
    border: #887C76;
    box-shadow: 10px 15px 12px 0px rgba(0, 0, 0, 0.25); /* #00000040 = rgba(0, 0, 0, 0.25) */
}

input[type="submit"]:hover {
    color: #fff;
    background: #000;
    box-shadow: 0 0 10px #cabfb4,0 0 20px #cabfb4, 0 0 30px #cabfb4;
}

header {
    position: absolute;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}


.logo img, .UniversityLogo img {
    width: 100px;
    height: 100px;
    border-radius : 10%;


}

/* --- Footer --- */
.footer-container {
   /* background: #cabfb4;*/
    color: white;
    padding: 15px 10px;

    font-size: 17px;
    font-weight: bold;
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}
