.fixed {
    overflow: hidden;
}
.fixed .form {
    background: white;
    z-index: 1;
    position: absolute;
    width: calc(90vw - 2em);
    max-width: 47em;
    height: fit-content;
    padding: 1em;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 4px;
    box-shadow: 1px 1px 3px 1px white;
    max-height: 88vh;
    overflow: auto;
    padding-top: 0.4em;
    border-radius: 6px;
}
.fixed .form .header {
    color: var(--theme1);
    font-family: var(--font2);
    line-height: 1em;
    font-size: 25px;
    width: 100%;
    text-align: center;
    text-align-last: center;
    margin-bottom: 1em;
    margin-top: 0.6em;
}
.fixed .form .credential {
    position: relative;
    font-family: var(--font2);
    font-size: 17px;
    font-weight: 500;
    color: var(--theme1);
    padding: 0.8em;
    width: calc(100% - 2em);
    border: 1px rgb(195, 195, 195) solid;
    border-radius: 3px;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.fixed .form select.credential {
    width: 99%;
}
.fixed .form .button {
    position: relative;
    margin-top: 1em;
    border-radius: 5px;
    box-shadow: none;
    border: 3px white solid;
}