body {
    font-family: arial, sans-serif;
    background:#f5f7fa;
    display:flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin:0;
}

form {
    background: #fff;
    padding:30px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    width: 380px;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
}

label {
    margin-bottom: 5px;
    display: block;
}

label span {
    color:red;
}

input, textarea {
    padding:10px;
    width:100%;
    margin-bottom: 15px;
    border:1px solid #ccc;
    border-radius: 6px;
}

.name-fields {
    display:flex;
    gap:10px;
}

.name-fields input {
    width:100%;
}

button:hover {
    background:#003366;
}

button {
    display:block;
    margin:0 auto;
    width:200px;
    background:#001f3f;
    color:#fff;
    border:none;
    padding:12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
}