/* Reset */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Cairo', sans-serif; }

/* Body */
body {
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
    color:#fff;
    overflow:hidden;
}

/* Wrapper */
.login_wrapper { width:100%; display:flex; justify-content:center; align-items:center; padding:15px; }

/* Login Box */
.login_box {
    background: rgba(30,30,30,0.95);
    border-radius: 25px;
    padding: 35px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 40px rgba(255,215,0,0.7);
    text-align:center;
    transition: 0.3s;
}
.login_box:hover { box-shadow: 0 0 60px rgba(255,215,0,0.9); }

/* Avatar */
.avatar_section { margin-bottom: 25px; }
.avatar_outer {
    position: relative;
    width:120px;
    height:120px;
    margin:0 auto;
    border-radius:50%;
    border: 3px solid #ffd700;
    overflow:hidden;
    box-shadow: 0 0 25px rgba(255,215,0,0.6);
    transition: all 0.3s ease;
}
.avatar_outer:hover { box-shadow: 0 0 35px rgba(255,215,0,0.9); }
.avatar_img { width:100%; height:100%; object-fit:cover; }
.avatar_upload {
    position:absolute;
    bottom:-5px;
    right:-5px;
    background:#ffd700;
    color:#1a1a1a;
    padding:6px 10px;
    border-radius:50%;
    cursor:pointer;
    font-size:14px;
    box-shadow: 0 0 12px rgba(255,215,0,0.7);
}
.avatar_upload:hover { background:#ffec8b; }
.up_input { display:none; }

/* Form Groups */
.form_group { margin-bottom:18px; text-align:right; }
label { display:block; margin-bottom:5px; font-weight:bold; color:#ffd700; font-size:14px; }
input[type="text"], select {
    width:100%;
    padding:10px 12px;
    border-radius:15px;
    border:1px solid #b8860b;
    background:#2c2c2c;
    color:#ffd700;
    font-size:14px;
    outline:none;
    transition: all 0.3s ease;
}
input[type="text"]:focus, select:focus {
    border-color:#ffd700;
    box-shadow: 0 0 12px rgba(255,215,0,0.6);
}

/* Submit Button */
.submit_btn {
    width:100%;
    padding:12px;
    border-radius:20px;
    border:none;
    font-weight:bold;
    font-size:16px;
    background: linear-gradient(145deg, #ffd700, #b8860b);
    color:#1a1a1a;
    cursor:pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,215,0,0.7);
}
.submit_btn:hover {
    background: linear-gradient(145deg, #b8860b, #ffd700);
    box-shadow: 0 0 30px rgba(255,215,0,0.9);
}

/* Links */
.links { margin-top:15px; font-size:13px; }
.links span, .links a {
    display:block;
    margin:5px 0;
    color:#ffd700;
    cursor:pointer;
    text-decoration:none;
    transition: 0.3s;
}
.links a:hover, .links span:hover {
    color:#ffec8b;
    text-decoration:underline;
}
