:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --text-color: #333;
    --bg-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
    --input-bg: #f5f7fa;
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.nav-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Content */
.main-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    width: 400px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 460px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

h1.title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.styled-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: var(--input-bg);
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.styled-input:focus {
    border-color: var(--secondary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #777;
    border: 2px solid #e0e0e0;
    padding: 10px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f5f5f5;
    color: #333;
}

.status-message {
    color: #dc3545;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
}

.footer {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.admin-card {
    border: 2px solid #ff4d4d !important;
    background: rgba(255, 230, 230, 0.9) !important;
    color: #333 !important;
}

.lover-card {
    background: linear-gradient(135deg, #ff758c 0%, #ff7eb3 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 117, 140, 0.4) !important;
}

.lover-card::after {
    content: "❤️";
    position: absolute;
    bottom: -5px;
    right: 5px;
    font-size: 3.5rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

.lover-card h3, .lover-card p {
    color: white !important;
}

.lover-card:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(255, 117, 140, 0.6) !important;
}
