:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
}
body {
    background-color: var(--color_antique_light_cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.login-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.svg-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

#svg-top-right {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

#svg-bottom-left {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    animation: pulse 10s ease infinite;
}

.login-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}

.login-header {
    text-align: center;
    
}

.login-header svg {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    animation: bounce 2s ease infinite;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(72, 149, 239, 0.25);
}

.btn-login {
    background-color: var(--color_antique_blue);
    border: none;
    padding: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: var(--color_antique_light_blue);
    transform: translateY(-2px);
}

.btn-login:active {
    transform: translateY(0);
}

/* SVG Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

#lock-icon {
    animation: float 3s ease infinite;
}

#user-icon {
    animation: float 3s ease infinite 0.5s;
}