* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 5px;
    outline: none;
}

button {
    padding: 10px 15px;
    border: none;
    background-color: #ffb400;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ffa000;
}

.footer {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
