/* BABISHA Admin Panel - Matching Website Theme */
:root {
    --primary-color: #007A5E; /* Peacock Green */
    --secondary-color: #C9A961; /* Foil Golden */
    --accent-color: #DC143C; /* Red */
    --text-dark: #2C1810; /* Dark Brown */
    --text-light: #8B7355; /* Light Brown */
    --beige: #FDF5E6; /* Old Lace */
    --cream: #FAF7F0; /* Cream */
    --white: #ffffff;
    --maroon-dark: #005A44; /* Dark Peacock Green */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 48px;
    font-weight: bold;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-b {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.logo-text {
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.login-content {
    width: 100%;
}

.admin-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.admin-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.login-form {
    text-align: left;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label svg {
    color: var(--text-light);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 94, 0.1);
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form-options {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.signin-btn {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 94, 0.2);
}

.signin-btn:hover {
    background-color: var(--maroon-dark);
    box-shadow: 0 6px 20px rgba(0, 122, 94, 0.3);
    transform: translateY(-2px);
}

.signin-btn svg {
    stroke: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.back-link svg {
    stroke: currentColor;
}

.error-message {
    background-color: rgba(220, 20, 60, 0.1);
    color: var(--accent-color);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
    border-left: 3px solid var(--accent-color);
}
