
body {
    background: #1b1b1b;
    font-family: Arial, sans-serif;
    color: #fff;
}

.container {
    max-width: 600px;
    margin: 80px auto;
    background: #2b2b2b;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    text-align: center;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
    font-size: 16px;
}

button {
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #6a5acd;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background: #7b68ee;
}

.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden { display: none; }

.modal-content {
    background: #2b2b2b;
    padding: 25px;
    border-radius: 12px;
    width: 320px;
}

.close {
    background: #d11a2a;
}

#status {
    margin-top: 20px;
}
