* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; /* Removes default margin to avoid scrolling issues */
    background: none; /* Removes the gradient if you want only the GIF */
    overflow: hidden; /* Prevents scrolling */
}

.background {
    position: fixed; /* Ensures it stays in place */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('BACKGROUNDVINTAGE.gif');
    background-size: cover; /* Ensures the GIF fills the screen */
    background-position: center; /* Centers the GIF */
    background-repeat: no-repeat; /* Prevents the GIF from repeating */
    z-index: -1; /* Places the background behind the content */
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
}

h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
}

input::placeholder {
    color: #b3b3b3;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #ff6b81;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #ff485f;
}

#error-message {
    margin-top: 10px;
    color: #ff6b81;
    font-weight: bold;
    display: none;
}
