
body{
    font-family: Arial, sans-serif;
    background-color: #F4F6F8;
    padding: 20px;
}

h1{
    text-align: center;
}

form{
    max-width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
}

label{
    display: block;
    margin-top: 15px;
    font-weight: bold;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="file"],
select,
textarea{
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}


textarea{
    height: 100px;
    resize: vertical;
}


input[type="checkbox"],
input[type="radio"]{
    margin-right: 5px;
}


fieldset{
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #CCCCCC;
}


fieldset label{
    display: inline-block;
    margin-top: 0;
    font-weight: normal;
}


legend{
    font-weight: bold;
}


button{
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}


button:hover{
    background-color: #3399FF;
}