* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background: #f2f2f2;
}
.form-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form {
    background: #fff;
    width: 350px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: #4a90e2;
}
.form textarea {
    resize: none;
    height: 80px;
}
.form button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #4a90e2;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: background .3s;
}
.form button:hover {
    background: #357abd;
}
