#quick-auth {
    display:none
}

#quick-auth.popup {
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #282828a3;
    backdrop-filter: blur(3px);
	animation-name: fadeIn;
	animation-duration: 0.5s;
}
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

#quick-auth > .box {
    width: 285px;
    margin: 0 auto;
    padding: 25px 35px 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    font-size: 12px;
    position: relative;
    animation-name: fadeIn;
    animation-duration: 0.5s;
}
#quick-auth > .box > .label {
    display:none;
    padding-bottom: 10px;
    text-align:center;
}
#quick-auth.required > .box > .label {
    display:block;
}
#quick-auth > .box > .label > strong,
#quick-auth > .box > .label > span {
    display:block;
    width: 100%;
}
#quick-auth > .box > .label > strong {
    font-size: 21px;
}
#quick-auth > .box > .label > span {
    font-size:14px;
    color: #6c9c72;
}
#quick-auth > .box > .auth-buttons {
    padding: 0;
    width: min-content;
    margin: 0 auto;
}
#quick-auth > .box > .auth-buttons .btn {
    padding-top: 4px;
    padding-bottom: 4px;
}
#quick-auth > .box > .auth-buttons .btn.regular-login {
    font-size: 14px;
}
#quick-auth > .box[data-selected="regular-login"] > .auth-buttons .btn.regular-login {
    margin: 10px 0 0 -6px;
    box-shadow: none;
    background: none;
    pointer-events: none;
}
#quick-auth > .box > form {
    max-height: 0px;
    overflow: hidden;
    text-align:center;
    transition: all 0.5s ease;
}
#quick-auth > .box[data-selected="regular-login"] > form {
    max-height: 500px;
    overflow: hidden;
}
#quick-auth > .box > form.error {
    overflow: visible;
}
#quick-auth > .box > form .form-group {
    width: 100%;
    float: left;
}
#quick-auth > .box > form.error .form-control-msg {
    float: left;
    min-width: 100%;
    margin: 5px -15px;
    padding: 7px 14px;
    font-size: 13px;
}
#quick-auth > .box > form .form-control {
    margin: 5px 0;
}
#quick-auth > .box > form button[type="submit"] {
    margin: 6px auto 12px;
    padding: 12px 36px;
}
#quick-auth > .box > form .other-options {
    display: flex;
    float:left;
    width: 100%;
    justify-content: space-between;
}