html {
    font-size: 14px;
}
body {
    font-family: "Open Sans", sans-serif !important;
    background: #232634;
}

:root {
    --mauve:     #ca9ee6;
    --red:       #e78284;
}

.content {
    width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login {
    background: #303446;
    width: 700px;
    margin: 0 auto;
}

.logo-text {
    font-family: "Grenze", serif;
    font-size: 36px !important;
}

.auth-img {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.auth-img-content {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}


.loader {
 transform: scale(0.6);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.loader svg path {
    fill: var(--mauve);
}



.gradient-text {
    background: linear-gradient(100deg, var(--mauve) 30%, var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
