﻿.verification-code {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.btn-container {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.section-title {
    font-family: "LutfeyArabic";
    font-weight: 100;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e7ff;
    padding-bottom: 0.5rem;
}

.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* يملأ الصفحة مع الحفاظ على النسبة */
    z-index: -1; /* خلف المحتوى */
}

/* الطبقة 3: صور صغيرة في الزوايا */
.corner-top-left {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: -1;
}

.corner-bottom-right {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    z-index: -1;
}

.img-holder {
    width: 100%;
    text-align: center; /* يخلي الصورة بالنص */
    margin-top: 20px; /* مسافة من أعلى */
    margin-bottom: 50px; /* ينزل RenderBody لتحت */
}

.top-image {
    width: 180px;
    height: auto;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* ينزل الكرت بالنص من ناحية الارتفاع */
    align-items: center; /* بالنص من اليمين واليسار */
}

.img-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.card-title {
    font-family: "LutfeyArabic";
    font-weight: 600; /* عادي تختار وزن */
    color: #143eaa
}

body {
    font-family: "Rubik";
    font-weight: 700; /* عادي تختار وزن */
}

.card {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.95); /* خلفية شبه شفافة للبطاقة */
}

.card-details {
    max-width: 600px;
    width: 100%;
    padding: 2rem;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-body button {
    font-family: "Rubik";
    font-weight: 600; /* عادي تختار وزن */
}

body .input-with-icon {
    padding-left: 40px; /* مساحة للأيقونة داخل البوكس */
}

body .input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 18px;
    pointer-events: none; /* حتى لا تمنع الكتابة */
}

.btn-primary {
    background-color: #143eaa;
    border-color: #143eaa;
    border-radius: 50rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #3265e7;
        border-color: #3265e7;
    }

.container {
    max-width: 1200px;
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }


.alert {
    border-radius: 0.75rem;
    font-family: 'Cairo', sans-serif;
}

@@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .card {
        margin: 1rem;
    }
}

.authentication-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: rgba(248, 249, 250, 0.8); /* طبقة شفافة لتحسين رؤية المحتوى */
}
