﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ----- خلفية الصفحة ----- */
body {
    background-image: url('/New2025/img/lo.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: #e7f5ee;
    min-height: 100vh;
}

/* ----- الحاوية الرئيسية ----- */
.login-bg {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-x: hidden;
}

/* ----- الكارد ----- */
.login-center {
    background: #fff;
    width: 560px;
    margin-top: 0;
    border-radius: 0 0 40px 40px;
    box-shadow: -25px 0px 50px 0px rgba(0,0,0,0.05);
    padding: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    text-align: center;
}

/* ----- الشعار ----- */
.login-logo {
    display: flex;
    align-items: center;
    gap: 3px;
}

    .login-logo img {
        width: 200px;
        height: auto;
        display: block;
        margin: 0 auto 12px auto;
    }

/* ----- العنوان ----- */
.login-title {
    color: #000;
    font-family: "IBM Plex Sans Arabic", "Cairo", sans-serif;
    font-size: 21px;
    font-weight: 430;
    line-height: 38px;
    width: 100%;
    margin-bottom: 10px;
    max-width: 430px;
    text-align: center;
}

/* ----- النموذج ----- */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    margin-bottom: 6px;
    display: block;
    font-weight: 700;
    color: #154734;
    font-size: 1.06rem;
}

.form-control {
    width: 100%;
    padding: 11px 12px;
    font-size: 1.09rem;
    border: 1.3px solid #cbd5e1;
    border-radius: 8px;
    background: #f7fafc;
    outline: none;
    margin-bottom: 2px;
    transition: border-color 0.2s;
}

    .form-control:focus {
        border-color: #1B8354;
        background: #fff;
    }

.text-danger {
    color: red !important;
    font-size: 0.98rem;
    margin-top: 3px;
    font-weight: 600;
}

/* ----- زر الإرسال ----- */
.btn-green.w-100 {
    display: block;
    width: 100%;
    min-height: 44px;
    border-radius: 6px;
    background: #1B8354;
    color: #fff;
    font-weight: 600;
    font-size: 1.10rem;
    border: none;
    cursor: pointer;
    transition: background .16s;
    margin: 0 auto;
    letter-spacing: .5px;
    padding: 0;
}

    .btn-green.w-100:hover {
        background: #157342;
    }

/* ----- اللغة والرابط ----- */
.login-lang {
    display: inline-flex;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: #1B8354;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 7px;
    font-weight: 500;
}

    .login-lang:hover {
        text-decoration: underline;
    }

/* ----- المساعدة ----- */
.login-help {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 400px;
    color: #363636;
    font-size: 1rem;
}

.info-icon {
    color: #1B8354;
    font-size: 1.23em;
    margin-left: 4px;
    vertical-align: middle;
}

.maak-link {
    color: #1B8354;
    text-decoration: underline;
    font-weight: 600;
}

    .maak-link:hover {
        color: #157342;
    }

/* ----- الفوتر ----- */
.login-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    font-size: 1.01rem;
    color: #444;
    margin-top: 12px;
    line-height: 1.7;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.footer-logo {
    width: 28px !important;
    height: auto;
    display: inline-block;
    margin-bottom: 0;
    margin-left: 5px;
}

.footer-highlight {
    color: #179764;
    font-weight: 700;
    display: inline;
}

.footer-copy {
    color: #179764;
    font-weight: 700;
    margin-top: 3px;
    display: block;
    font-size: 1.07rem;
    letter-spacing: .2px;
}

/* ----- Responsive ----- */
@media (max-width: 650px) {
    .login-center {
        width: 98vw;
        padding: 14vw 2vw;
        border-radius: 18px;
        box-shadow: none;
        gap: 22px;
    }

    .login-title {
        max-width: 98vw;
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .login-logo img {
        width: 80px;
    }

    .btn-green.w-100 {
        font-size: .98rem;
    }

    .login-form {
        gap: 8px;
    }

    .login-help {
        width: 90vw;
        font-size: .96rem;
    }
}

@media (max-width: 420px) {
    .login-center {
        padding: 7vw 2vw;
        gap: 11px;
    }

    .btn-green.w-100 {
        font-size: .92rem;
    }
}


#submit-btn:disabled {
    background-color: #c5c5c5 !important;
    color: #fff !important;
    cursor: not-allowed;
    opacity: 0.7;
}

