/* ربط الخط العربي الأساسي للمنصة */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background-color: rgb(209, 204, 158); /* اللون الزيتوني الفاتح المعتمد في الهوم */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden; /* لمنع السكرول العرضي في الموبايل */
}

.main-card {
    background-color: #fdfdf5;
    border: 3px solid #2d3319;
    border-radius: 40px;
    width: 100%;
    max-width: 450px;
    padding: 35px;
    /* ظل 3D صلب ليتناغم مع كروت الأقسام */
    box-shadow: 12px 12px 0px #2d3319; 
    margin: 20px;
}

.input-field {
    border: 3px solid #2d3319;
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    background: #fdfdf5;
    outline: none;
    font-weight: bold;
    color: #2d3319;
    transition: 0.2s all ease-in-out;
}

.input-field:focus {
    border-color: rgb(93, 99, 58);
    background-color: #f4f4e8;
}

.btn-olive {
    background-color: #5d633a;
    color: white;
    border: 3px solid #2d3319;
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    font-weight: 900; /* لزيادة الوضوح */
    cursor: pointer;
    box-shadow: 0 6px 0 #2d3319;
    transition: 0.1s;
    font-size: 1.1rem;
}

.btn-olive:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #2d3319;
}

.google-btn-custom {
    background-color: white;
    color: #2d3319;
    border: 3px solid #2d3319;
    border-radius: 20px;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    box-shadow: 0 4px 0 #2d3319;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.google-btn-custom:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #2d3319;
}

.eye-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    color: #2d3319;
    font-size: 1.2rem;
    z-index: 10;
}

.hidden { display: none !important; }

/* تحسين شكل الكتابة */
input::placeholder {
    color: #9ca3af;
    opacity: 0.7;
    font-weight: normal;
}

/* إضافة لمسة احترافية للـ Labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    color: #2d3319;
    font-size: 0.9rem;
    margin-right: 5px;
}