.rst-auth-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.rst-auth-content {
    display: flex;
    min-width: 375px;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: wrap;
    transition: all .4s ease;
}
.rst-auth-aside {
    display: flex;
    background: linear-gradient(45deg, #ffe200, #ff6a00);
    flex-direction: row;
    align-items: flex-end;
    padding: 10px;
    height: 60px;
    justify-content: flex-end;
}
.rst-aside-slogan {
    color: black;
    font-weight: 500;
    font-size: 1.1rem;
}
.rst-auth-form-section {
    display: flex;
    padding: 20px;
    justify-content: center;
}
.rst-auth-actions-wrapper {
    width: 300px;
    min-height: 300px;
    flex: 1;
}
.rst-auth-section {
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.rst-auth-section--active{
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.rst-auth-title {
    font-size: 1.5rem;
}
.rst-auth-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rst-auth-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rst-auth-field label {
    color: lightgrey;
    font-size: .85rem;
}
.rst-password-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
}
.rst-password-container input {
    flex: 1;
}
button.rst-auth-toggle-password {
    display: flex;
    background: dimgray;
    border-radius: 10px;
    width: 35px;
    align-items: center;
    justify-content: center;
}
label.rst-checkbox-label {
    display: flex;
    gap: 5px;
    align-items: center;
}
label.rst-checkbox-label span {
    color: lightgray;
    font-size: .85rem;
}
.rst-auth-links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
a.rst-no-account {
    font-family: 'Atma', sans-serif;
    font-size: 1.15rem;
    text-decoration: underline;
    font-weight: 400;
}
.rst-sociallogin-wrapper {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 15px;
}




.rst-overflow-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.rst-overflow-image {
    width: 150px;
    transform: translate(-10px, -50px);
    transition: all .4s ease;
    filter: drop-shadow(1px 3px 5px rgba(0,0,0,.4));
}