@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

html {
    direction: rtl;
}
body {
    direction: rtl;
    background-color: #217ED0;
    position: relative;
    margin: 0;
    min-height: 100vh;
    font-family: 'Cairo', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.jpg') center/cover no-repeat;
    opacity: 0.60; /* 22% شفافية للصورة فقط */
    z-index: -1;
}

main.container {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    max-width: 400px;
    width: calc(100% - 40px); /* مسافة من الجوانب على الموبايل */
    margin: 40px auto;
    padding: 40px 20px 60px 20px;
    box-sizing: border-box;
}
main h3 {
    text-align: center;
    font-weight: 700; /* Bold */
}
.form-control {
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-color: #217ED0;
}
.form-control:focus {
    border-color: #1b69b0;
    box-shadow: none;
}
.form-control::placeholder {
    color: #CCCCCC;
}


.btn-primary {
    margin-top: 15px;
    width: 100%;
    background-color: #217ED0;
    color: #fff;
    border: none;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 10px;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #1b69b0; /* أغمق 4-5 درجات */
    color: #fff;
    border: none;
}
















.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ترتيب اللوجو حسب اتجاه الصفحة */
.navbar-brand {
    order: 2; /* يمين */
}


/* زر اللغة دائري */
.navbar-nav .nav-link.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #217ED0;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 0;
}

/* ترتيب روابط البداية والنهاية حسب الاتجاه */
.navbar-nav-start {
    order: 1; /* أقصى اليسار */
}
.navbar-nav-end {
    order: 2; /* أقصى اليمين */
}
