@import url("https://use.typekit.net/jvl6ifv.css");

:root
{
	--color-FLEX-logo-start: #333;
	--color-FLEX-logo-end: #000;

	--form-font: "brandon-grotesque", sans-serif;
    --color: #441d1f;
}
@font-face
{
	font-family: "brandon-grotesque", sans-serif;
	src: url(./fonts/BrandonGrotesque-Regular.otf) format('otf');
}

/* ------------------- FORM STYLE START HERE! -------------- */
body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #FFF;;    
}

:root {
    --animation-delay: 3s;
}

form {
	display: grid;
	padding: 110px 20px 50px 20px;
    background: url(/_customers/images/ui/StreamlineBrands/StreamlineBrands-logo.png) #ffffffd0;
    background-repeat: no-repeat;
    background-size: 250px;
    background-position: center 20px;	
	position: fixed;
	top: -150px;
	left: 0;
    right: 0;
	bottom: 0;
	margin: auto;
	min-height: 300px;
	max-height: 320px;
	height: min-content;
	min-width: 350px;
	width: fit-content;
    border-radius: 12px;
    border: 1px solid #F7F7F7;
    box-shadow: 2px 6px 6px 0px rgba(0, 0, 0, 0.25);

	color: #000;
	border-radius: 12px;
	/* border: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(255, 255, 255, 0.09); */
	
	z-index: 3;
	animation: formAni 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	animation-delay: calc(var(--animation-delay) + 4s);
    /* display: none; */
}

@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: 12px;
	text-align: left;
	grid-area: 6 / 1 / 9 / 2;
	margin-top: 40px;
	color: #333;
	font-style: normal;
	padding:10px;
	letter-spacing: 1px;
}

input {
	padding: 10px 20px;
	color: #333;
	background: #fff;
	border-bottom: 1px solid #ccc;
    border-left: none ;
    border-right: none;
    border-top: none;
	font-size: 16px;
    font-style: italic;
	outline: none;
	margin-top: 10px;
	width: 350px;
	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: #888888;
	font-family: var(--form-font);
	font-size: 14px;
	font-weight: 200;
}

button
{
	border: none;
	color: #fff;
	cursor:pointer;
	font-family: var(--font-kelson-bold);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	outline: none;
	display: block;
	margin-top: 10px;
	height: 40px;
	width: 173px;
    border-radius: 0px;
}

button.login-only.login {
	background: #F47C20;
    border-radius: 0;
	color: #fff;	
	cursor: pointer;
    display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.login:hover {
	transition: 0.3s;
	opacity: .8;
	background: #e60808;
}

button.login-only.register {
	background: #00AAB3;
    border-radius: 0;
    opacity: .5;
	margin-left: 177px;
	cursor: pointer;
	display: block;
	grid-area: 4 / 1 / 6 / 2;
}

button.login-only.register:hover {
	background: #333;
	opacity: 1;
	transition: 0.3s;
}

button.login-only.forgot {
	background: none;
	color: var(--theme-color);
	width: 50%;
	text-align: left;
	font-weight: 400;
	line-height: 20px;
	cursor: pointer;
	font-size: 12px;
	grid-area: 5 / 1 / 8 / 2;
	margin-top: 34px;
	height: 19px;
}

button.login-only.forgot:hover {
	color: #000000;
	font-weight: 400;
	transition: 0.3s;
}

button.register-only.register {
	background:#8CC63F;
	border-radius: 0;
	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: #136BBC;
	margin-left: 175px;
	grid-area: 5 / 1 / 7 / 2;
	border-radius: 0;
}

button.register-only.cancel:hover {
	background: #383838;
	transition: 0.3s;
}

/* ---------------------- FORM END -------------- */
.logoVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

/* Animation */ 
  .header {
    position:relative;
    text-align:center;
    background: #FFF;
    color:white;  
    animation: 1s waveOpacity ease both;
    animation-delay: calc(var(--animation-delay) + 5s);
  }

  @keyframes waveOpacity {
	0% {
		opacity: 0;
		filter: blur(16px);
	}
	100% {
		opacity: 1;
		filter: blur(0px);
	}
}
  .logo {
    width:50px;
    fill:white;
    padding-right:15px;
    display:inline-block;
    vertical-align: middle;
  }
  
  .inner-header {
    height:75vh;
    width:100%;
    margin: 0;
    padding: 0;
  }
  
  .flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
  }
  
  .content {
    position:relative;
    height:20vh;
    text-align:center;
    background-color: #00a8ea;
    animation: 1s waveOpacity ease both;
    animation-delay: calc(var(--animation-delay) + 5s);
  }
  
  /* Animation */
 
  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }
    h1 {
      font-size:24px;
    }
  }
/* Animation END */
/* Ball Box */
.ballBox {
    position: absolute;
    top: -160px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 760px;
    height: 410px;
    background: transparent;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    animation: 1s waveOpacity ease both;
	animation-delay: calc(var(--animation-delay) + 8s);
}
.leftBallBox {
    width: 317px;
    height: 410px;
    background: transparent;
}

.leftBallBox img {
	animation: slide-top-1 15s cubic-bezier(0.250, 0.460, 0.450, 0.940) 8.5s infinite;
}
@keyframes slide-top-1 {
	0% {
	  transform: translateY(-100px);
	}
	50% {
	  transform: translateY(100px);
	}
	100% {
		transform: translateY(-100px);
	  }
}   

.rightBallBox {
    width: 317px;
    height: 410px;
    background: transparent;
    position: relative;
}
.rightBallBoxBox {
    width: 262px;
    height: 317px;
    position: absolute;
    bottom: 0;
    right: 0;
}

div .rightBallBoxBox img {
	animation: slide-top 15s cubic-bezier(0.250, 0.460, 0.450, 0.940) 8.5s infinite;
}

@keyframes slide-top {
	0% {
	  transform: translateY(0);
	}
	50% {
	  transform: translateY(-100px);
	}
	100% {
		transform: translateY(0);
	  }
}   



