@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');

:root {
    --godocolor: #006EA0;
    --godocolorlogin: #006EA0;
    --godosubcolor: #878787;
    --gododark: #ffffff;
    --godotext: #006EA0;
    --godochartprimary: #006EA0;
    --godocolororange: #E95A0B;
    --godochartthird: #3aaa35
}

* {
	box-sizing: border-box;
}

body {
	background: url(../img/BG-Texture.png);
	color: var(--godosubcolor);
	font-family: 'Ubuntu', sans-serif;
}

h1 {
	font-weight: bold;
	margin: 0;
}

h2 {
	text-align: center;
}

p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

a {
	color: var(--godocolorlogin);
	font-size: 14px;
	text-decoration: none;
	margin: 15px 0;
}

.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 110px;
	height: 110px;
	box-sizing: border-box;
	display: none;
}
.loader .face
{
	position: absolute;
	border:2px solid #C4EAF9;
}
.loader .face.face1{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	border-left: 4px solid #6BCBF1;
	border-top: 4px solid #6BCBF1;
	animation: animate 1s linear infinite;
	-webkit-box-shadow: inset 0px 0px 10px 8px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 10px 8px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 10px 8px rgba(0,0,0,0.15)
}
.loader .face .circle{
	position: absolute;
	top: calc(50% - 1px);
	left: 50%;
	width: 50%;
	height: 2px;
	transform-origin: left;
}

/*for rotation of the circle with angle*/
.loader .face.face1 .circle{
	transform: rotate(-45deg);
}
.loader .face .circle:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	top: 10px;
	right: -5px;
}
.loader .face.face1 .circle:before{
	background: #6BCBF1;
	box-shadow: 0 0 20px #6BCBF1, 0 0 40px #6BCBF1, 0 0 60px #6BCBF1, 0 0 80px #6BCBF1, 0 0 100px #6BCBF1, 0 0 0 5px rgba(107,203,241,.1);
}


@keyframes animate{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}



.GDW-page-loader{
	width: 768px;
	height: 480px;
	position: fixed;
	border-radius: 10px;
	background-color: var(--gododark);
	z-index: 999;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.GDW-page-loader-logo{
	position: relative;
	width: 80px;
	height: 80px;
}
.GDW-page-loader-logo svg {
	-webkit-transform-origin: center center;
	transform-origin: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	vertical-align: middle;
}
#Layer_1 path {
	stroke-dasharray: 1000;
	animation: draw 6s infinite;
}

@keyframes draw {
	0% {
		stroke-dashoffset: 0
	}
	50% {
		stroke-dashoffset: 6000;
	}
}

.swal2-styled.swal2-confirm {
	border: 0;
	border-radius: .25em;
	background: initial;
	background: linear-gradient(to bottom, var(--godocolorlogin) 0%,rgba(0,0,0,1)150%) !important;
	color: #fff;
	font-size: 1.0625em;
}

.swal2-success-circular-line-left,
.swal2-success-circular-line-right,
.swal2-success-circular-line-right,
.swal2-success-circular-line-top,
.swal2-success-circular-line-bottom{
	display: none !important;
}
.swal2-success-fix,.swal2-popup {
	background: var(--gododark) !important;
}
.swal2-popup.swal2-toast {
	box-shadow: 0 0 0.625em var(--gododark) !important;
}

.swal2-container.ca .swal2-title {
	font-size: 1.25rem;
	color: #ffffff; }

.swal2-container.ca .swal2-footer {
	border-color: rgba(255, 255, 255, 0.08); }

.swal2-actions .btn {
	color: #ffffff;
	text-transform: uppercase; }
.swal2-actions .btn:hover {
	background-color: rgba(255, 255, 255, 0.08); }


.container-box{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.btn-login {
	width: 300px !important;
	border-radius: 6px;
	border: none;
	background: var(--godocolorlogin);
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.btn-login:active {
	transform: scale(1.1);
}

.btn-login:focus {
	outline: none;
}
.btn-login:hover {
	transform: scale(1.02);

}
.btn-login.ghost {
	background: transparent !important;
  border-color: #FFFFFF;
  transition: all .5s;
	border: 2px solid white;
}
.btn-login.ghost:hover {
  background-color: #FFFFFF;
  color: white;
}

.btn-back{
	position: fixed;
	top: 0;
	left: 0;
	font-size: 25px;
}

.title-text{
	margin: auto;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	letter-spacing: 5px;
	position: relative;
	bottom: 270px;
	font-size: 8px;
}

.client-logo {
	position: absolute;
	top: -13%;
	left: -7%;
	background: white;
	border-radius: 50%;
	z-index: 999;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
	background: url(/images/gdw_logo.png);
	object-fit: fill;
	background-size: 75px;
	background-position: 30px center;
	background-repeat: no-repeat;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.client-logo img {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	box-shadow: inset 0 0 10px #00000042;
}
span.client-name {
	background: linear-gradient(to right, rgba(0,0,0,0.25)70%, transparent 100%);
	padding: 5px 15px 5px 5px;
	border-radius: 3px 3px 3px 3px;
	position: fixed;
	text-align: center;
	top: 27px;
	left: 68px;
	width: 150px;
	text-overflow: ellipsis;
}
.form-login {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
	border-radius: 10px;
}
.login-container {
	background-color: #fff;
	border-radius: 10px;
  box-shadow: 0 0px 25px rgba(0,0,0,0.2);
	position: relative;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

.form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

.group 			  { 
  position:relative; 
  margin-bottom: 35px;
}
.input-login 				{
  font-size: 18px;
  padding: 10px 10px 5px 1px;
  display: block;
  width: 300px;
  border: none;
  color: var(--godosubcolor);
  border-bottom: 1px solid var(--godosubcolor);
}
.input-login:focus 		{ outline:none; }

/* LABEL ======================================= */
label 				 {
  color: var(--godosubcolor);
	font-size:10px;
	text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  position: absolute;
  pointer-events: none;
  left: -3px;
  top: -4px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* active state */
.input-login:focus ~ label, .input-login:valid ~ label 		{
  top:-20px;
  font-size:10px;
  color:var(--godocolorlogin);
}

/* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:300px; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:var(--godocolorlogin); 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
.input-login:focus ~ .bar:before, .input-login:focus ~ .bar:after {
  width:50%;
}

/* active state */
.input-login:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#5264AE; }
  to 	{ width:0; background:transparent; }
}

  .input-group-text {
    font-weight: bold !important;
    font-size: 30px !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    border-right: 2px solid var(--godocolorlogin) !important;
    padding: 2px !important;
    margin-right: 10px !important;
    background: none !important;
    color: var(--godocolorlogin) !important;
    border-radius: 0.25rem 0 0 0.25rem !important;
}

.account-container {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	left: 0;
	z-index: 2;
}

.login-container.right-panel-active .account-container {
	transform: translateX(100%);
}

.sign-up-container {
	left: 0;
	width: 50%;
	opacity: 0;
	z-index: 1;
}

.login-container.right-panel-active .sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {
	0%, 49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%, 100% {
		opacity: 1;
		z-index: 5;
	}
}

.overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

.login-container.right-panel-active .overlay-container{
	transform: translateX(-100%);
}

.overlay {
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) -170%,var(--godocolorlogin) 145%),url(../img/BG.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
  	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
	border-radius: 10px;
}

.login-container.right-panel-active .overlay {
  	transform: translateX(50%);
}



.GDW-page-loader{
	width: 768px;
	height: 480px;
	position: fixed;
	border-radius: 10px;
	background-color: var(--gododark);
	z-index: 999;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.GDW-page-loader-logo{
	position: relative;
	width: 80px;
	height: 80px;
}
.GDW-page-loader-logo svg {
	-webkit-transform-origin: center center;
	transform-origin: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	vertical-align: middle;
}
#Layer_1 path {
	stroke-dasharray: 1000;
	animation: draw 6s infinite;
}

@keyframes draw {
	0% {
		stroke-dashoffset: 0
	}
	50% {
		stroke-dashoffset: 6000;
	}
}
.overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

.overlay-left {
	transform: translateX(-20%);
}

.login-container.right-panel-active .overlay-left {
	transform: translateX(0);
}

.overlay-right {
	right: 0;
	transform: translateX(0);
}

.login-container.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.lang{
	position: absolute;
	right: 25px;
	top: 15px;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 3px 10px 5px 10px;
	border-radius: 5px;
}

.account-text {
	margin-bottom: 75px;
	color: var(--godocolorlogin);
}
.account-text h1{
font-size: 15px;
letter-spacing: 5px;
font-weight: bold;
}
.account-text span{
font-size: 10px;
letter-spacing: 5px;
color: var(--godosubcolor)
}
.account-card{
  width: 230px;
  height: 55px;
  position: relative;
  border-radius: 10px;
  left: 25px;
  background-color: #f7f6f6;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  animation: show-profile 0.5s forwards ease-in-out;
  margin-bottom: 20px;
  border: 3px solid white;
  transition: all 0.2s;
}
@keyframes show-profile {
	0% {
	  width: 0;
	}
  }

.account-card:active{
  transform: scale(1.09);
  /* background: #E95A0B; */
  background: #e0e0e0 !important;
}
.account-image{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-top: -7px;
  overflow: hidden;
  border: 3px solid #fafafa;
  background-color: #fafafa;
  margin-left: -50px;
  box-shadow: 0 0 0.5rem #babbbc;
  animation: rotate-photo 0.5s forwards ease-in-out;
}
@keyframes rotate-photo {
	100% {
	  transform: rotate(-360deg);
	}
  }

  .account-content{
  padding: 4px 5px;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  }
  .account-content::before{
	content: "";
	position: absolute;
	width: 230px;
	height: 150px;
	background-color: #e9f3e6;
	left: 0;
	top: -20px;
	z-index: -1;
	transform: rotate(-8deg);
  }

  .account-content .text h3{
    font-size: 13px;
    color: var(--godocolorlogin);
    font-weight: bold;
    margin: 3px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: left;
    margin-left: 20px
  }
  .account-content .text h6{
    font-size: 10px;
    font-weight: normal;
    margin: 3px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-align: left;
    margin-left: 20px;
  }
@media (max-width: 768px) {
	.overlay-right,
	.overlay-left,
	.account-container{
		display: none !important;
	}
	.overlay{
		background: none !important;
	}
	.login-container.right-panel-active .sign-up-container{
		transform: translate(0%) !important;
	}
	.input-login,.group,.sign-up-container,.bar{
		width: 100% !important;
	}
	.btn-login{
		width: 200px !important;
	}
}
/* 

.profile {
  width: 330px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  background-color: #fafafa;
  box-shadow: 0 0 2rem #babbbc;
  animation: show-profile 0.5s forwards ease-in-out;
}
@keyframes show-profile {
  0% {
    width: 0;
  }
}
.profile .photo, .profile .content {
  box-sizing: border-box;
}
.profile .photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fafafa;
  background-color: #fafafa;
  margin-left: -50px;
  box-shadow: 0 0 0.5rem #babbbc;
  animation: rotate-photo 0.5s forwards ease-in-out;
}
@keyframes rotate-photo {
  100% {
    transform: rotate(-360deg);
  }
}
.profile .photo img {
  width: 100%;
}
.profile .content {
  padding: 10px;
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.profile .content::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 150px;
  background-color: #e9f3e6;
  left: 0;
  top: -20px;
  z-index: -1;
  transform: rotate(-8deg);
}
.profile .content .text {
  margin-top: 20px;
  margin-left: 50px;
}
.profile .content .text h3, .profile .content .text h6 {
  font-weight: normal;
  margin: 3px 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.profile .content .btn {
  background-color: #abc;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 25px;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.3s;
  animation: pop-btn 0.3s both ease-in-out 0.5s;
}
@keyframes pop-btn {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.profile .content .btn:hover {
  box-shadow: 0 0 0 5px rgba(170, 187, 204, 0.5);
}
.profile .content .btn span {
  width: 60%;
  height: 2px;
  position: absolute;
  background-color: white;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  animation: to-hamburger 0.3s forwards ease-in-out;
}
.profile .content .btn span::before, .profile .content .btn span::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: white;
  transition-duration: 0.3s;
  transform: rotate(0deg);
  right: 0;
}
.profile .content .btn span::before {
  margin-top: -7px;
}
.profile .content .btn span::after {
  margin-top: 7px;
}
.profile .content .btn.active span {
  animation: to-arrow 0.3s forwards ease-in-out;
}
.profile .content .btn.active span::before, .profile .content .btn.active span::after {
  width: 60%;
  right: -1px;
}
.profile .content .btn.active span::before {
  transform: rotate(45deg);
}
.profile .content .btn.active span::after {
  transform: rotate(-45deg);
}
@keyframes to-hamburger {
  from {
    transform: translateY(-50%) rotate(-180deg);
  }
}
@keyframes to-arrow {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(180deg);
  }
}
.profile .box {
  width: 150px;
  height: 150px;
  opacity: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  right: -40%;
  transform: translate(-50%, -50%);
  transition-duration: 0.3s;
}
.profile .box i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ececec;
  font-size: 26px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  left: 18px;
  top: calc(75px - 50px/2);
  box-shadow: 0 0 0.5rem #babbbc;
  transition-duration: 0.3s;
}
.profile .box i:hover {
  transition-delay: initial !important;
  box-shadow: 0 0 0 5px #babbbc;
}
.profile .box.open {
  opacity: 1;
}
.profile .box.open i {
  left: 60px;
}
.profile .box.open i:nth-of-type(1) {
  transform: rotate(-90deg) translateX(120px) rotate(90deg);
  transition-delay: 0s;
}
.profile .box.open i:nth-of-type(2) {
  transform: rotate(-45deg) translateX(120px) rotate(45deg);
  transition-delay: 0.1s;
}
.profile .box.open i:nth-of-type(3) {
  transform: rotate(0deg) translateX(120px) rotate(0deg);
  transition-delay: 0.2s;
}
.profile .box.open i:nth-of-type(4) {
  transform: rotate(45deg) translateX(120px) rotate(-45deg);
  transition-delay: 0.3s;
}
.profile .box.open i:nth-of-type(5) {
  transform: rotate(90deg) translateX(120px) rotate(-90deg);
  transition-delay: 0.4s;
} */
