@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600;700&display=swap');
; *:not(i) {
    font-family: 'Rubik' !important
}

:root {
    --color-loginpage-box-background: rgb(242 242 242 / 1);
    --color-calendar-second-text: #737373;
    --color-loginpage-box-border: rgb(235 235 235);
    --color-loginpage-input-background: #FFF;
    --color-loginpage-link: #1b4a8e;
    --color-loginpage-link-hover: #000;
    --color-loginpage-button-background: #1b4a8e;
}
.system-login-body div#LogInContent {
    border-radius: 0px;
    box-shadow: 0 4px 7px rgb(0 0 0 / 40%);
    padding: 40px 40px 40px 40px;
    animation: 0.8s ease-out 0s 1 slideIn;
    position: relative;
}
.button, .btn {
    border-radius: 0px !important;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
}
a {
    text-decoration: underline;
    transition: all 444ms;
}
form[action^="/Login/SystemLogin"] {
    display:flex;
    flex-flow: column;
}
form>:nth-child(1) {
    order: 1;
}
form>:nth-child(2) {
    order: 2;
}

form>:nth-child(6) {
    order: 3;
}
form>:nth-child(3) {
    order: 4;
}
form>:nth-child(4) {
    order: 5;
}
form>:nth-child(5) {
    order: 6;
}
form>:nth-child(7) {
    order: 8;
}
.fields label {
    padding: 0 0 5px 0;
}
#reset-password {
    margin-top: 20px;
}
.fields {
    margin: 10px 0 0 0;
}
.system-login-body #LogInContent label {
    font-weight: 400;
}
@keyframes slideIn {
  0% {
    transform: translateY(20%);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInTop {
  0% {
    transform: translateY(-40%);
    opacity: 0.1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
body.system-login-body {
  background: url(https://www.nextlevelclub.bg/wp-content/uploads/2021/10/login_bg.jpg) 50% 50%;
  background-size: cover;
}
.multisport {
    padding-top: 8px;
}
.system-login {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.system-login .logo{
	height: 100px !important;
	position: relative;
	max-width: 400px;
	width: 100%;
	background: none;	
    animation: 0.8s ease-out 0s 1 slideInTop;
}
.system-login .logo::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 50%;
    right: calc(50% + 15px);
    padding: 5px 15px;
    width: 35%;
    height: 76px;
    background: url(https://www.nextlevelclub.bg/wp-content/themes/mfp/img/logo_nl_blue_main.svg) no-repeat 50% 50%;
    background-size: contain;
}
.system-login .logo::after {
	content: "MY ACCOUNT";
	white-space: nowrap;
	color: var(--color-loginpage-button-background);
	text-decoration: none;
	text-transform: uppercase;
	position: absolute;
	top: 50px;
	left: 50%;
	padding: 5px 15px;
	border-left: solid 1px var(--color-loginpage-button-background);
	white-space: nowrap;
	font-weight: bold;
}
html[lang=cs] .system-login .logo::after {
    content: "M\016E J \00DA \010C ET";
}
html[lang=bg] .system-login .logo::after {
    content: "\041C \041E \042F \0422  \041F \0420 \041E \0424 \0418 \041B ";
}
@media (max-width: 450px){
    .system-login-body div#LogInContent {
        padding: 30px 20px 30px 20px;
    }
}
.system-login-body #LogInContent h1 {
    color: var(--color-loginpage-button-background);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 140%;
}