:root {
    --primary-color: #e0c3fc;
    --secondary-color: #8ec5fc;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    --input-bg: rgba(255, 255, 255, 0.6);
    --text-color: #4a4a4a;
    --text-muted: #7a7a7a;
    --accent-color: #a18cd1;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-color);
}

/* Glassmorphism Card */
.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 3rem 2.5rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

margin-bottom: 0.5rem;
}

p.text-muted {
    font-size: 0.95rem;
    color: var(--text-muted) !important;
}

label.form-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Form Inputs */
.input-group {
    background-color: var(--input-bg);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-group:focus-within {
    background-color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(161, 140, 209, 0.15);
}

.input-group-text {
    background-color: transparent !important;
    border: none !important;
    color: var(--text-muted);
    padding-left: 1.2rem;
    padding-right: 0.8rem;
}

.form-control {
    background-color: transparent !important;
    border: none !important;
    color: var(--text-color) !important;
    padding: 0.8rem 0.5rem;
    font-size: 1rem;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #aaa;
    font-size: 0.95rem;
}

.input-group:focus-within .input-group-text {
    color: var(--accent-color);
}

/* Buttons */
.btn-login {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px;
    border-radius: 12px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(161, 140, 209, 0.2);
}

.btn-login:hover {
    background: linear-gradient(135deg, #907cc3 0%, #eab0dc 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(161, 140, 209, 0.3);
}

.btn-login:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(161, 140, 209, 0.2);
}

/* Utilities */
.cursor-pointer {
    cursor: pointer;
    transition: color 0.3s ease;
}

.cursor-pointer:hover {
    color: var(--text-color);
}

/* Floating shapes for background */
body::before,
body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -150px;
    left: -150px;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 197, 252, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    right: -100px;
}

/* Responsive */
@media (max-width: 576px) {
    .login-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
    }

    .logo-icon i {
        font-size: 2rem;
    }
}