:root
{
	--color-FLEX-logo-start: #2B636B;
	--color-FLEX-logo-end: #0A1C21;
}
/* -------------------------  -------------------- */
body {
    overflow: hidden;
    background: url(/_customers/images/ui/Pratum/Pratum-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

body::before {
	display: none;
}

.background {
    
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: -1;
}

.mainLogo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: fit-content;
    z-index: 10; 
}

.mainLogo img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: fit-content;
    position: relative;     
    z-index: 10;
    animation: 2s frontLogo ease 3s both, 1s logoMain-ani ease-in-out 5s forwards;    
}

@keyframes frontLogo {
    0%      {   opacity: 0;     }
    100%    {   opacity: 1;     }
}

@keyframes logoMain-ani {
	0% {
		transform: scale(1);
        opacity: 1;
	}
	100% {
		transform: scale(.4)
				   translateY(0px);
				   /* translateX(calc(-80% + 50px)); */
        opacity: 0;
	}
}

.mainBox {
    background: rgb(255 255 255 / 9%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    width: 80%;
    max-height: 600px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-wrap: nowrap;
    animation: scale-in-ver-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 5s both;
}

@keyframes scale-in-ver-center {
    0% {
      transform: scaleY(0);
      opacity: 1;
    }
    100% {
      transform: scaleY(1);
      opacity: 1;
    }
}
  
.boxLogo {
    width: 50%;
    max-height: 600px;
}

.boxLogo img {
    position: relative;
    max-width: 400px;
    width: 100%;
    max-height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: 2s frontLogo ease 5s both;
}

.boxLine {
    background: #696969;
    height: 400px;
    width: .5px;
    position: relative;
    top: 0;
    bottom: 0;
    left: -25%;
    margin: auto;
}

/* MAIN FORM HERE */

form {
	display: grid;
	padding: 70px 20px 30px 20px;
	background: url(/_customers/images/ui/Pratum/login.svg);
	background-position: left 22px top 0px;
	background-repeat: no-repeat;
	background-size: 100px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: calc(0% + -40%);
	margin: auto;
	min-height: 240px;
	max-height: 300px;
	height: min-content;
	min-width: 390px;
	width: fit-content;
	color: #000;
	border-radius: 4px;
	z-index: 11;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 6s both;
}

@keyframes formAni {
	0% {
		opacity: 0;
		transform: scaleY(0.4);
    	transform-origin: 0% 100%;
	}
	100% {
		opacity: 1;
		transform: scaleY(1);
    	transform-origin: 0% 100%;
	}
}

form div {
	font-size: 10px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 30px;
	color: #ffffff;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
	font-family: sans-serif;
}

input {
	padding: 10px 20px;
	color: #333;
	background: transparent;
	border: none;
    border-bottom: 0.5px solid #383838;
	font-size: 18px;
	outline: none;
	margin-top: 10px;
	width: 400px;
	height: 40px;
    border-radius: 0px;
}

input[name="email"] {
	grid-area: 2 / 1 / 3 / 2;
}

input[name="password"] {
	grid-area: 3 / 1 / 4 / 2;	
}

input[name="code"] {
	grid-area: 4 / 1 / 5 / 2;
}

input[name="code"]::placeholder {
	color: #ccc;
}

::placeholder {
	color: #0A1C20;
    font-family: sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 195px;
    border-radius: 0px;
    font-family: sans-serif;
}

button.login-only.login {
	background: #CD913B;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	background: #d17a00;
	transition: 0.3s;
}

button.login-only.register {
	background: #0A1C20;
	margin-left: 205px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #005568;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: #B7D3E1;
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 13px;
	/* grid-area: 5 / 1 / 8 / 2; */
	margin-top: 15px;
	height: 20px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#93B791;
	color: #fff;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.register:hover {
	background: #15BEF0;
	color: #fff;
	transition: 0.3s;
}

button.register-only.cancel {
	background: #2B646B;
	margin-left: 205px;
	grid-area: 5 / 1 / 7 / 2;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* Responsive Screen -------------------------------------------------------- */

@media screen and (width <= 1009px) {
	.boxLogo img {
        display: none;
    }
    .boxLine {
        display: none;
    }

    form {
        right: calc(0% + 0%);
    }
}

@media screen and (width <= 520px) {
	.mainBox {
		display: none;
	}
}

.help-link
{
	top: 0px;
	right: 65%;
}