body {
    font-family: Arial, sans-serif;
    background: rgb(9, 13, 26);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 2vh;
    color: #f8fafc;
}

.card {
    background: rgb(9, 13, 26);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 300px;
}

h2 {
    margin-top: 0;
}

input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #2c7be5;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #1a68d1;
}

#status {
    margin-top: 12px;
    font-size: 14px;
}