* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.login-page {
    background-color: #2c1a12; /* Dark Brown Background */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    display: flex;
    width: 900px;
    height: 550px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Left Panel - Gradient matching your screenshot */
.side-panel {
    flex: 1;
    background: linear-gradient(135deg, #a67c52 0%, #5e4026 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.toggle-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-tab {
    padding: 12px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.auth-tab.inactive {
    color: rgba(255, 255, 255, 0.7);
}

/* The exact Overlapping Tab Style from image */
.auth-tab.active {
    background: #fff;
    color: #a67c52;
    border-radius: 30px 0 0 30px;
    transform: translateX(1px);
    box-shadow: -5px 0 10px rgba(0,0,0,0.1);
}

/* Right Panel */
.form-panel {
    flex: 1.5;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Role Switcher (Customer/Staff) */
.role-selector {
    background: #f4f4f4;
    padding: 4px;
    border-radius: 50px;
    display: flex;
    margin-bottom: 25px;
}

.role-btn {
    border: none;
    background: none;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    color: #888;
}

.role-btn.active {
    background: #fff;
    color: #a67c52;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #a67c52;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: #a67c52;
    margin-bottom: 10px;
}

h2 {
    color: #a67c52;
    letter-spacing: 2px;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

#auth-form { width: 100%; }

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
    padding: 10px 0;
}

.input-group i {
    color: #a67c52;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.forgot-link {
    font-size: 0.75rem;
    color: #4b0082; /* Purple as seen in your image */
    text-decoration: underline;
}

.submit-btn {
    background: #a67c52;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(166, 124, 82, 0.3);
}

.social-section {
    margin-top: auto;
    text-align: center;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.input-group {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.social-section p { font-size: 0.75rem; color: #777; margin-bottom: 10px; }

.social-icons { display: flex; justify-content: center; gap: 20px; }

.social-icons a { font-size: 1.2rem; text-decoration: none; }