html {
    margin: 0;
    font-family: Roboto;
    background-color: #d1dfd9;
}

body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    font-size: clamp(1.4em, 1.5vw, 2.6em);
}

header {
    max-height: 100px;
    padding: 5px;
}

header p {
    margin: 0;
    display: inline-block;
    font-size: 60px;
}

img {
    max-width: 100px;
}

main {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

h1 {
    text-align: center;
    font-size: 2em;
}

form {
    margin: auto;
    width: auto;
    height: auto;
    display: flex;
    column-gap: 50px;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: top;
}

a {
    margin: 0;
    text-align: end;
    font-size: 0.7em;
    color: #000000;
}

.submit-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: end;
    height: 100%;
    justify-content: center;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: end;
    height: fit-content;
}

.submit-container div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media only screen and (max-width: 728px)  {
    .submit-container {
    height: fit-content;
}
}

.input-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.input-container input {
    padding: 0;
    margin: 0;
    height: 44px;
    width: 350px;
    align-self: center;
}

.input-container div {
    display: flex;
    position: relative;
    justify-content: center;
    width: 350px;
}

.input-container div input {
    width: 300px;
}

.password-button {
    background-color: #00000000;
    border: none;
    align-self: center;
    cursor: pointer;
    width: 50px;
}

.material-symbols-outlined.eye-icon {
    font-size: 3em;
}

input {
    font-size: 0.6em;
}

.submit {
    background-color: #5d8674;
    font-size: 1em;
    align-self: center;
    cursor: pointer;
    margin: auto 0;
    padding: 0.5em 1.3em;
    display: flex;
    justify-self: center;
    text-align: center;
}

.submit:hover {
 background-color: #95b4a6;
}

.submit:active {
 background-color: #779f8d;
}   