body { font-family: 'Tactic Round', sans-serif; margin: 0; padding: 0; } header { background-color: #C78E66; color: white; display: flex; justify-content: space-between; padding: 10px 20px; } header a { color: white; text-decoration: none; margin: 0 10px; font-size: 18px; transition: all ease 0.3s; } header a:hover { color: #333; } main { display: flex; flex-wrap: wrap; padding: 20px; } section { width: 100%; margin-bottom: 20px; } section h2 { margin-bottom: 10px; color: #C78E66; font-size: 24px; } form { display: flex; flex-wrap: wrap; margin-bottom: 10px; } label { width: 100%; margin-bottom: 5px; color: #C78E66; font-size: 16px; } input[type="text"], input[type="date"], input[type="time"], select { width: 100%; padding: 5px; margin-bottom: 10px; border: 1px solid #C78E66; background-color: rgba(255, 255, 255, 0); color: #C78E66; font-size: 16px; transition: all ease 0.3s; } input[type="text"]:focus, input[type="date"]:focus, input[type="time"]:focus, select:focus { outline: none; border-color: #333; } button[type="submit"] { width: 310px; height: 40px; display: flex; justify-content: space-around; align-items: center; border: 1px solid white; background-color: #C78E66; color: white; font-size: 18px; transition: all ease 0.3s; cursor: pointer; } button[type="submit"]:hover { background-color: #333; border-color: #333; } button#changePassword { width: 310px; height: 40px; display: flex; justify-content: space-around; align-items: center; border: 1px solid white; background-color: rgba(255, 255, 255, 0); color: #C78E66; font-size: 18px; transition: all ease 0.3s; cursor: pointer; margin-bottom: 10px; } button#changePassword:hover { background-color: #C78E66; color: white; } footer { background-color: #C78E66; color: white; display: flex; justify-content: center; padding: 10px; font-size: 16px; } footer p { margin: 0; } .center { text-align: center; font-size: 0.75em; } .block_auth { position: relative; } .close { position: absolute; top: 0; right: 0; font-size: 1.5em; cursor: pointer; color: #ccc; } .profile-picture { width: 100px; height: 100px; border-radius: 50%; background-color: #C78E66; display: flex; justify-content: center; align-items: center; cursor: pointer; background-size: cover; } .profile-picture:hover { background-color: #996945; } .profile-picture .plus { font-size: 2em; color: white; } .close { position: absolute; top: 10px; right: 10px; font-size: 24px; cursor: pointer; color: #777; }