:root {
    --primary-color: #d97706; /* Saliqa Gold/Orange */
    --dark-bg: #1a1917;
    --text-light: #f8f9fa;
    --input-bg: #f3f4f6;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1917 0%, #333 100%);
    padding: 20px;
}

.login-container {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    width: 60px;
    margin-bottom: 10px;
}

.login-logo h1 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    letter-spacing: 2px;
    font-weight: 800;
}

.login-header h2 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 8px;
}

.login-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field i:not(.toggle-password) {
    position: absolute;
    left: 15px;
    color: #999;
}

.input-field input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: var(--input-bg);
    transition: 0.3s;
    outline: none;
}

.input-field input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #999;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    background: #b45309;
    transform: translateY(-2px);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}