/* --- 1. Variables & Reset (Professional Setup) --- */
:root {
    --primary-color: #ECB30D; /* Figma Yellow */
    --primary-hover: #d4a00b;
    --text-dark: #333333;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --bg-gray: #F4F4F4;
    --input-bg: #F8F9FA;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--primary-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden; /* Scrollbar chupane ke liye */
    position: relative;
}

/* --- 2. Background Abstract Shapes (The "Wow" Factor) --- */
/* Yeh wo wavy yellow background banata hai */
.bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 800px;
    height: 800px;
    top: -400px;
    right: -200px;
    background: #e6ac00;
}

.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -150px;
    background: #dcb328;
}

/* --- 3. Login Wrapper --- */
.login-wrapper {
    z-index: 10;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    text-align: center;
}

.login-header h1 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* --- 4. The Card Design (Premium Feel) --- */
.login-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px); /* Hover par thoda uthega */
}

.card-header h3 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
}

/* --- 5. Inputs & Labels --- */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.input-field {
    position: relative;
}

.input-field input {
    width: 100%;
    padding: 15px;
    background-color: var(--input-bg);
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    outline: none;
}

/* Input Focus Effect */
.input-field input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(236, 179, 13, 0.1);
}

/* Eye Icon Logic */
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* --- 6. Actions & Button --- */
.form-actions {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-link {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link:hover {
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 179, 13, 0.3);
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(236, 179, 13, 0.4);
    transform: translateY(-2px);
}
