body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   /* background: #e9ecef;*/
   background: rgb(79, 79, 79);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.logo {
    position: absolute;
    max-width: 650px;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.login-container {
    background: rgba(255, 255, 255);
    padding: 40px 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 2000;
}

.login-form h2 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.login-form input {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    border-radius: 25px;
    border: 1px solid #ced4da;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-size: 16px;
    color: #495057;
}

button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #80bdff;
    border-color: #80bdff;
}

button {
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background: #0056b3;
}

.options {
    margin-top: 25px;
    text-align: center;
}

.options a {
    text-decoration: none;
    color: #007bff;
    margin: 0 10px;
    font-size: 14px;
}

.options a:hover {
    text-decoration: underline;
}


#snow {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.snowflake {
    position: fixed; /* Change from absolute to fixed */
    top: -10px;
    color: #fff;
    opacity: 0.8;
    font-size: 0.8em; /* Adjust font size for smaller snowflakes */
    user-select: none;
    z-index: 1000;
}
.santagif {
    width: 300px;
    position: fixed;
    top: 50%; 
    left: -300px; 
    z-index: 1001; 
    animation: moveSanta 6s linear infinite; 
}

@keyframes moveSanta {
    0% {
        left: -300px; /* Start off-screen to the left */
    }
    100% {
        left: 100vw; /* End off-screen to the right */
    }
}

