.content-authorization{
    display: flex;
    width: 100%;
    height: 100vh;
    background: var(--ColorThemes0);
    flex-direction: column;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}
.content-authorization > div {
    display: flex;
    width: 300px;
    height: 200px;
    border: 2px solid var(--ColorThemes1);
    background: var(--ColorThemes1);
    box-shadow: 0px 24px 32px rgb(0 0 0 / 9%), 0px 16px 24px rgb(0 0 0 / 9%), 0px 4px 8px rgb(0 0 0 / 9%), 0px 0px 1px rgb(0 0 0 / 9%);
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    z-index: 9999;
    padding: 10px;
    border-radius: 25px;
}
#authorization-text {
    color: var(--ColorThemes2);
    font-size: 18px;
    text-align: center;
}
#authorization-content{
    width: calc(100% - 20px);
    height: 100%;
    margin: 5px 0;
    border-radius: 20px;
    padding: 10px;
}
#authorization-content input{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    color: var(--ColorThemes2);
    padding: 2px 10px;
    background: var(--ColorThemes0);
    cursor: pointer;
    border: 0;
    margin-bottom: 5px;
    margin-left: 0;
    width: calc(100% - 20px);
    border-radius: 20px;
}
#authorization-content > #status {   
    color: #a52828;
    justify-content: center;
    display: none;
}
#authorization-buttons{
    width: 100%;
    display: flex;
}
#authorization-buttons > button{
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 30px;
    padding: 2px 10px;
    background: var(--PrimaryColor);
    color: var(--PrimaryColorText);
    cursor: pointer;
    border: 0;
    width: 100%;
    border-radius: 20px;
}