body {
    margin: 0;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, #b6d7e5 0%, #fdf4ec 40%, #f6c28b 100%);
    background-attachment: fixed;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

/* Container for the form */
.login-container {
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 50px 60px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(8px);
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
    animation: slideUp 0.8s ease-out;
    background: transparent;
}

/* Login heading */
.login-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #111;
}

/* Labels */
.login-container label {
    display: block;
    text-align: left;
    font-size: 16px;
    margin: 12px 0 6px;
    font-weight: 500;
    color: #222;
}

/* Input fields */
.login-container input {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    margin-bottom: 18px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

/* Focus effect */
.login-container input:focus {
    border-color: #ff007f;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

/* Submit button */
.login-container button {
    width: 50%;
    margin: auto;
    padding: 8px 10px;
    background: #ff007f;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect for button */
.login-container button:hover {
    background: #e60073;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(120deg, #b6d7e5 0%, #fdf4ec 40%, #f6c28b 100%);
    }
    100% {
        background: linear-gradient(120deg, #a8d1e2 0%, #fdf1e8 40%, #f7b87a 100%);
    }
}