﻿@font-face {
    font-family: 'Cairo', sans-serif;
    src: url('fonts/Cairo-VariableFont_wght.ttf') format('ttf')
}
#main {
    transition: margin-right 0.3s;
    padding: 20px;
}
body {
    font-family: 'Cairo', sans-serif;
}
.page-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#4f46e5,#7c3aed);
    padding: 20px;
}

/* صندوق تسجيل الدخول */

.login-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* العنوان */

.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.login-subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

/* الحقول */

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

.form-input {
    width: 100%;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding-right: 10px;
    font-size: 14px;
}

    .form-input:focus {
        border-color: #4f46e5;
        outline: none;
    }

/* الروابط */

.links {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 13px;
}

    .links a {
        color: #b91c1c;
        text-decoration: none;
    }

        .links a:hover {
            text-decoration: underline;
        }

/* الأزرار */

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn {
    width: 48%;
    height: 42px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.btn-login {
    background: #4f46e5;
    color: white;
}

    .btn-login:hover {
        background: #4338ca;
    }

.btn-exit {
    background: #ef4444;
    color: white;
}

    .btn-exit:hover {
        background: #dc2626;
    }

/* Hero */

.hero {
    text-align: center;
    color: white;
    margin-bottom: 25px;
}

    .hero h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 16px;
    }

/* Responsive */

@media (max-width:600px) {

    .hero h2 {
        font-size: 22px;
    }

    .login-card {
        padding: 20px;
    }
}