.logo{
    display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    width: auto;
    height: auto;
}

.logo .cont_logo_insys{
	display: flex;

	max-width: 60px;
	width: 100%;
	padding: 5px;
	background-color: #fff;
	border-radius: 50%;
}

.logo .cont_logo_insys img{
	width: 100%;
	max-height: 50px;
}

.a-logo{
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    /* background: linear-gradient(to right, rgb(32, 38, 57), rgb(63, 76, 119),rgb(32, 38, 57),  rgb(63, 76, 119));
     */
	/* background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(215,223,252,1) 0%, rgba(255,255,255,1) 0%, rgba(215,223,252,1) 84% ); */
     /* background: -webkit-linear-gradient(to right, #232526, #414345); */
     /* background: linear-gradient(to right, #232526, #414345); */
    /* -webkit-text-fill-color: transparent; */
    /* -webkit-background-clip: text; */
	color: var(--thirdy);
    width: 300px;
    overflow: hidden;
    animation: shring-animation 1.5s steps(40,end) 1.5s forwards, blink .5s step-end infinite alternate;
}

@keyframes shring-animation {
    0% {
		background-position: 0 0;
		opacity: 0;
		width: 0;
    }
    1% {
		background-position: 0 0;
		opacity: 1;
		border-right: 1px solid rgba(227, 11, 11, 0);
    }
    50% {
		background-position: 150px 0;
		opacity: 1;
		border-right: 1px solid rgba(222, 18, 18, 0);
    }
    100% {
		background-position: 400px 0;
		opacity: 1;
		border-right: 1px solid rgb(253, 7, 7,0);
    }
}

@keyframes type {
	0% {
		width: 0;
	}
	1%, 99%{
		border-right: 1px solid rgba(255, 166, 0, 0);
	}
	100%{
		border-right: none;
	}
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
	box-sizing: border-box;
}

body {
	background-color: #f6f5f7;
    background-image: url(../img/bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: initial;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	height: 100vh;
	margin: 0;
	padding: 0;
	/* margin: 0 0 0 50px; */
}

h1 {
	font-weight: bold;
	margin: 0;
	color: var(--primary);
}

h2 {
	text-align: center;
}

h4 {
	font-weight: bold;
	margin: 0;
	color: var(--primary);
	text-align: start;
	width: 100%;
}

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

span {
	font-size: 12px;
}

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

button {
	border-radius: 20px;
	margin-top: 10px;
	border: 1px solid var(--secondary);
	background-color: var(--secondary);
	color: var(--thirdy);
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 80ms ease-in;
}

button:active {
	transform: scale(0.95);
}

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: var(--thirdy);
}

form {
	background-color: var(--thirdy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 25px 50px;
	height: 100%;
	text-align: center;
}

.form-container a:hover {
	color: var(--primary);
}

input, select {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
}

.container {
	background-color: var(--primary);
	border-radius: 10px;
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

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

.sign-in-container {
	left: 0;
	width: 50%;
}

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

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

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

@keyframes show {
	0%, 49.99% {
		opacity: 0;
	}
	
	50%, 100% {
		opacity: 1;
	}
}

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

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

.overlay {
	/* background: var(--primary); */
	background-image: radial-gradient( circle farthest-corner at 12.3% 19.3%,  var(--secondary) 50%, var(--thirdy) 190% );
	/* background: -webkit-linear-gradient(to right, var(--primary), var(--primary)); */
	/* background: linear-gradient(to right, var(--primary), var(--primary)); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: var(--thirdy);
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

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

.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%);
}

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

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

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

.social-container {
	margin: 20px 0;
}

.social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

.intro{
	background: var(--secondary);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.intro .intro-text h1 span{
	color: var(--thirdy);
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
}

.hide{
	background: var(--secondary);
	overflow: hidden;
}

.hide span{
	transform: translateY(100%);
	display: inline-block;
	text-align: center;
}

.cont_logo{
	width: 100%;
	max-width: 180px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.cont_logo img{
	width: 100%;
	height: auto;
}

@media (max-width: 800px) {
	.container{
		min-height: 380px;
	}

	.overlay-container{
		display: none;
	}

	.sign-in-container{
		width: 100%;
	}

	body{
		padding: 0 20px;
	}

	form {
		padding: 15px 30px;
	}

	h1{
		font-size: 25px;
	}
}

@media (max-width: 500px) {
	.intro .intro-text h1 span{
		font-size: 25px;
	}
}