display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
h1 {
color: #555;
font-size: 36px;
}
form {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f5f5f5;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px #bbb;
}
label {
width: 120px;
text-align: left;
font-size: 20px;
margin-bottom: 10px;
}
input {
width: 200px;
padding: 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
margin-bottom: 10px;
}
input:read-only {
background-color: #f5f5f5;
color: #555;
cursor: not-allowed;
}