:root {
    --primary-color: #4e54c8;
    --secondary-color: #8f94fb;
    --font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    font-family: var(--font-family);
    color: #333;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.text-primary-gradient {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.input-group-text {
    border-color: #dee2e6;
}

.form-control {
    border-color: #dee2e6;
    font-size: 0.95rem;
}

.btn-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.cursor-pointer {
    cursor: pointer;
}

/* Add some floating shapes/particles if desired in future, keeping it clean for now */
