* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* هنا تقدر تبدل رابط الخلفية بأي صورة بغيتي */
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8)),  url('../img/bg.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* الجهة اليسرى */
.content-side {
    flex: 1;
    padding-right: 50px;
    color: black;
}

.logo img {
    width: 150px;
    margin-bottom: 20px;
}

.content-side h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.content-side p {
    font-size: 1.1rem;
    max-width: 400px;
    opacity: 0.9;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    text-align: center;
}

/* فورم التسجيل - Glassmorphism */
.login-card {
    background: rgba(243, 240, 240, 0.822);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    color: black;
}

.login-card h2 {
    margin-bottom: 10px; 
}
.subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.8; 
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,);
    color: black;
    outline: none;
}

.extra-actions {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.extra-actions a { color: white; text-decoration: none; }

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #27ae60; /* لون أخضر بحال اللي في المغرب */
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
}

.btn-primary:hover { background: #2ecc71; }

.btn-google {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.footer-text {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer-text a { color: #2ecc71; text-decoration: none; font-weight: bold; }