body {
    background-color: #f4f4f4;
    font-family: arial, sans-serif;
}

form {
    background-color: white;
    width: 400px;
    padding: 30px;
    margin: auto;
}

h1 {
    font-size: 24px;
    text-align: center;
}

input, select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

label {
    display: block;
    margin-top: 15px;
    
}

button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #2563eb;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #1d4ed8;
}

input:focus, select:focus {
    outline: none;
    border-color: #2563eb;  

}


* { box-sizing: border-box; }
body { margin: 0; padding: 24px 12px; color: #202938; }
form { width: 100%; max-width: 460px; border-radius: 8px; }
input, select, button { font: inherit; }
button:disabled { opacity: .65; cursor: wait; }
button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid #1d4ed8; outline-offset: 2px; }
.privacy { margin-top: 24px; padding: 14px; background: #f1f5f9; border-radius: 5px; font-size: 14px; line-height: 1.5; }
.privacy h2 { font-size: 16px; margin-top: 0; }
small { display: block; margin-top: 5px; }
#status { line-height: 1.5; }
#status:empty { display: none; }
