.sign {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: fit-content;
}

.account {
    outline: none;
    border: none;
    font-size: 20px;
    padding: 5px;
    margin-bottom: 5px;
    background: #d1d1d1;
}

.account::placeholder {
    font-size: small;
}

.account:focus {
    background: #fff;
}

.password {
    outline: none;
    border: none;
    font-size: 20px;
    padding: 5px;
    background: #d1d1d1;
}

.password::placeholder {
    font-size: small;
}

.password:focus {
    background: #fff;
}

.sign-switch {
    width: 100%;
    display: flex;
    justify-content: end;
}

.sign-switcher {
    width: fit-content;
    cursor: pointer;
    font-size: 12px;
    color: #fff;
}

.sign-switcher:hover {
    text-decoration: underline;
}

.sign-action {
    cursor: pointer;
    color: #fff;
    text-align: center;
    border: 1px solid #fff7;
    padding: 5px;
}

.sign-action:hover {
    color: #befffa;
}

.sign-action:active {
    border: 1px solid #fff5;
}

.sign-google {
    cursor: pointer;
    background: rgb(100, 155, 255);
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: smaller;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff7;
    margin-top: 10px;
}

.sign-google:hover {
    color: #befffa;
}

.sign-google:active {
    border: 1px solid #fff5;
}