body {
    font-family: sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.register-container {
    background: white;
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

h2 {
    margin-top: 0;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box; 
}

button {
    width: 100%;
    padding: 10px;
    background-color: #eee;
    border: 1px solid #bbb;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #ddd;
}