#popup-overlay-login {
    display: block;
    /*position: fixed;*/
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

#popup-login {
    background-color: #1A1717;;
    padding: 80px 20px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow-y: auto;
}

.popup-close-login {
    background: none;
    border: none;
    cursor: pointer;
}

.popup-close-login img {
    width: 26px;
    cursor: pointer;
    position: absolute;
    right: 57px;
    top: 50px;
}

.popup-name-login {
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.popup-instruction {
    color: #FAFAFA;
    text-align: center;
    /* 24 regular */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.desc-form-input,
.feedback_create-form-input label{
    color: #FAFAFA;

    /* 24 regular */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}


form {
    display: flex;
    flex-direction: column;
}

form input,
.ck-editor-container textarea {
    display: flex;
    padding: 16px 14px 16px 40px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 13px;
    border: 2px solid rgba(250, 250, 250, 0.80);
    background-color: #1A1717;
    color: rgba(250, 250, 250, 0.36);
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    box-sizing: border-box;
    width: 100%;
}

.password-help {
    margin-top: 6px;
    color: #ccc;
    list-style: disc;
    padding-left: 20px;
    color: rgba(250, 250, 250, 0.36);
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.buttons-login {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
}

.login-button-redirect-to-registration, .login-button-back {
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    flex: 1 0 0;
    flex-wrap: wrap;
    border-radius: 67px;
    background: #484040;
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.next-step-button-login {
    display: flex;
    padding: 14px 50px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 8px;
    flex: 1 0 0;
    flex-wrap: wrap;
    border-radius: 67px;
    background: #FECA14;
    color: #050505;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.errorlist {
    margin: 4px 0 0 0;
    padding: 0;
    list-style: none;

}

.errorlist li {
    list-style-type: none;
    color: red;
}

.google-login-button {
    background: none;
    border: none;
    cursor: pointer;
    text-align: end;
    margin-top: 20px;
    color: #FAFAFA;
    font-family: "Source Sans Pro Bold", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    width: 100%;

}


@media (min-width: 768px) {
    #popup-login {
        max-width: 734px;
        height: auto;
        margin-top: 0;
        padding: 100px 154px;
    }
}

@media (min-width: 992px) {
    .buttons-login {
        flex-direction: row;
        gap: 30px;
    }
}
