* {
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
}
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}
.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}
input[type="text"],
input[type="password"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-checkbox input {
    margin-right: 10px;
}
.form-actions {
    display: flex;
    justify-content: space-between;
}
input[type="submit"],
input[type="reset"] {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
input[type="submit"] {
    background-color: #007bff;
    color: #fff;
}
input[type="submit"]:hover {
    background-color: #0056b3;
}
input[type="reset"] {
    background-color: #6c757d;
    color: #fff;
}
input[type="reset"]:hover {
    background-color: #5a6268;
}