body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1b1b1b, #0f3057);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #fff;
}

.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 320px;
    border: 2px solid #00a8cc;
}

h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00a8cc;
}

label {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #00a8cc;
    background: #0d1b2a;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

button {
    background-color: #00a8cc;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

button:hover {
    background-color: #007ea7;
    transform: scale(1.05);
}

p {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #00a8cc;
}
