 @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');


/*universal style*/

body 
{
	  font-family: "Jost";
}


/*parent div*/

.sign-up-form
{
	background-image: url(../images/bg.jpg);
	min-height: 100vh;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.sign-up-form-inner
{
	position: relative;
}
.wrapper
{
	padding: -1px 30px 50px 50px;
}


/*logo style*/
.brand-name
{
	text-transform: uppercase;
	width: 15%;
	animation: fadeInTop 1s ease forwards;
	margin-bottom: 20px;
}
.brand-name a
{
	color: rgb(255,255,255);
	font-size: 17px;
	font-weight: bold;
	margin-left: 25px;
	display: inline-block;
	height: auto;
	text-decoration: none;
	position: relative;
}
.brand-name a::before
{
	content: "";
	position: absolute;
	width: 5px;
	height: 85%;
	top: 5px;
	left: -20px;
	background: rgb(255,255,255);
	border-left: solid 5px #fff;
}

/*user desc style*/
.about
{
	position: absolute;
	bottom: 50px;
	width: 35%;
}
.about h1
{

  font-size: 90px;
  color: rgb(255, 255, 255);
  font-weight: bold;

}

/*reg-form-parent*/
.reg-form
{
  border-radius: 4px;
  background-color: rgb(236, 244, 245);
  box-shadow: 0px 5px 73px 0px rgba(0, 0, 0, 0.36);
}
.reg-form .wrapper
{
	padding: 20px 5px 10px 5px;
}
.reg-form h2
{
  font-size: 30px;
  margin-bottom: 0;
  color: rgb(79, 79, 111);
  font-weight: bold;
}
.reg-form p
{

  font-size: 14px;
  margin-top: 0;
  color: rgb(136, 136, 136);
}


/*reg-form form-style*/
.reg-form form
{
	border-top: solid 2px rgb(187, 211, 214);
	border-bottom: solid 2px rgb(187, 211, 214);
}
.reg-form form span
{
  font-size: 16px;
  font-family: "Jost";
  color: rgb(0, 0, 0);
  font-weight: bold;

}

.reg-form form input[type=text], .reg-form form input[type=password], .reg-form form input[type=email], .reg-form form select
{
	width: 100%;
	height: 45px;
	outline: solid 3px rgb(235, 235, 235);
	border: none;
	border-radius: 6px;
	padding-left: 15px;
	background-color: rgb(255, 255, 255);

}
.reg-form form input:focus
{
	outline: none;
	box-shadow: 0px 5px 35px 0px rgba(107, 89, 211, 0.17);
}
.cropper-point {
    background-color: #1d4ed8 !important;
    height: 12px !important;
    opacity: .75 !important;
    width: 12px !important;
	border-radius: 50% !important;
}
cropper-container{
    width: 547px !important;
}
.cropper-crop {
    border-radius: 24px !important;
}
/*reg-form label*/
.reg-form form label
{
  font-size: 15px;
  color: rgb(0, 0, 0);
  margin-top: 10px;
  	cursor: pointer;
  display: flex;
}
.reg-form form label input 
{
	margin-top: 4px;
	margin-right: 10px;
	-webkit-appearance: none;
  border: solid 2px rgb(102, 132, 242);
  cursor: pointer;
}

.reg-form form label a, .reg-button span a
{
	color: rgb(102, 132, 242);
	text-decoration: none;
}

/*Sign in*/


.signin-block
{
	display: none;
}
.signin-none
{
	display: block;
}
.show-signin .signin-block
{
	display: block;
}
.show-signin .signin-none
{
	display: none;
}

/*reg-button login/sign button*/
.reg-button
{
	margin-top: 9px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.reg-button .sign-up
{
  font-size: 14px;
  color: rgb(255, 255, 255);
  border-radius: 26px;
  background-image: -moz-linear-gradient( 0deg, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(129,76,249) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(129,76,249) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(84,76,249) 0%, rgb(129,76,249) 100%);
  border: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 50px;
  text-transform: uppercase;
}
.reg-button .sign-up:before
{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(90deg, transparent, #fff, transparent);
    transition: 0.5s ease;
}
.reg-button .sign-up:hover:before
{
    left: 100%;
}
/*reveal signup/login link*/
.reg-button span
{
	float: right;
	line-height: 50px;
}

