body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    text-align: center;
    width: 80%;
    max-width: 400px;
    position: fixed;
    bottom: 50px;
}

h2 {
    color: #d4af37;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 20px;
    text-align: left;
    color: #d4af37;
}

input {
    padding: 10px;
    border: 1px solid #d4af37;
    border-radius: 5px;
    font-size: 20px;
    background-color: #222;
    color: #fff;
}

button {
    background:linear-gradient(to bottom, #ffc86b, #725118);
    color: #1c1c1c;
    border: none;
    padding: 12px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 15px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #b89e30;
}

.error {
    color: red;
    font-size: 14px;
}