@font-face {
    font-family: "Aaux";
    src: url(./assets/fonts/ARIAL.TTF);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Aaux";
}
header img {
    height: 2em;
}
header {
    background-color: #484341;
    display: flex;
    justify-content: space-between;
}
header>p {
    font-family: "Aaux";
    color: #fff;
    line-height: 1em;
    margin: .4em;
}
header div p {
    font-family: Arial, Helvetica, sans-serif;
    color: #d9662d;
    line-height: 1em;
    font-weight: bold;
    font-size: .5em;
    align-self: flex-end;
    margin-right: 2em;
    margin-bottom: .7em;
}
header div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h2 {
    margin: .5rem;
}
section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
}
input {
    width: 100%;
}
form * {
    margin: .5em 0;
}
form {
    display: flex;
    flex-direction: column;
}
button {
    color: #fff;
    font-size: medium;
    letter-spacing: .03em;
    border-radius: 5px;
    border: none;
    background-color: #d9662d;
    padding: .8em;
    cursor: pointer;
    width: 40%;
    align-self: center;
    transition: background-color 0.1s ease-in-out;
}
button:hover,
button:active {
    background-color: #be5621;
}
input {
    height: 2.5em;
    border-radius: 5px;
    border: 1px solid rgb(161, 161, 161);
    padding-left: .5em;
}
input:focus {
    box-shadow: 0px 0px 3px 1px #d9662d;
    border: 1px solid rgb(161, 161, 161);
    outline: none;
}