body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0a0f1f, #0f2a44);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 500px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00c6ff;
}

h1 {
    font-size: 48px;
    margin: 10px 0;
}

p {
    color: #ccc;
    margin-bottom: 30px;
}

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

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

button {
    padding: 10px 20px;
    border: none;
    background: #00c6ff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0099cc;
}

.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}
