header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7a03;
    padding: 20px;
    font-size: 25px;
    color: black;
    font-family: sans-serif;
    margin-bottom: 10px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-left h2 {
    margin: 0;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    gap: 7px;
}

.header-right a {
    color: rgb(90, 89, 89);
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    transition: color 0.3s ease;
    border-radius: 3px;
}

.header-right a:hover {
    color: black;
    background-color: transparent;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-link img {
    margin-right: 10px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.center form {
    width: 100%;
    max-width: 600px;
}
.center h2 {
    text-align: center;
}
.center div {
    margin-bottom: 15px;
}
