@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: url('/static/images/background.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    backdrop-filter: blur(5px);
    color: #fff;
}

.container {
    background: rgba(51, 51, 51, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #fa8072;
    margin-bottom: 1rem;
}

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

.login-menu input {
    display: block;
    width: 80%;
    margin: 0.5rem auto;
    padding: 0.5rem;
    border: none;
    border-radius: 8px;
    background: #fff9e6;
    font-size: 1rem;
    text-align: center;
}

.login-menu button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
}

.login-menu button:hover {
    background: #555;
    box-shadow: 0 0 10px #fa8072;
}

p {
    color: #fff;
    margin: 1rem 0;
}
