body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f2f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.register-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.register-box h2 {
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: bold;
    text-align: center;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
