@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

body {
	background: linear-gradient(90deg, #a4cea4, #13ba13);
	height: 100vh;
	overflow: hidden;
}

.container {
	height: 100vh;
	width: 100vw;
}

.screen {
	background: #FFFFFF;
	position: relative;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}

.screen__content {
  z-index: 1;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.screen__background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
-webkit-clip-path: inset(0 0 0 0);
clip-path: inset(0 0 0 0);
}

.screen__background__shape {
transform: rotate(45deg);
position: absolute;
z-index: 0;
}

/* Top-right white shape */
.screen__background__shape1 {
	height: 100px;
	width: 100px;
	/* background: #FFF; */
	top: 0;
	right: 0;
	border-radius: 0 72px 0 0;
}
/* Top-right small green shape */
.screen__background__shape2 {
height: 250px;
width: 120px;
background: #094709;
top: -200px;
right: -70px;
border-radius: 115px;
}
/* Top-right tall gradient shape */
.screen__background__shape3 {
height: 100px;
width: 200px;
background: linear-gradient(270deg, #094709, #13ba13);
top: 0;
right: -100px;
border-radius: 32px;
}
/* Bottom-right green shape */
.screen__background__shape4 {
	height: 260px;
	width: 200px;
	background: #13ba13;
	bottom: -180px;
	right: -75px;
	border-radius: 60px;
}

.login {
	max-width: 900px;
	margin: 20px 15px;
	z-index: 2;
	position: relative;
	width: 100%;
  padding: 20px;
}

.login__field {
	padding: 10px 0px;
	position: relative;
}

.login__icon {
	position: absolute;
	top: 25px;
	color: #a4cea4;
	font-size: 20px;
}

.login__input {
	border: none;
	border-bottom: 2px solid #a4cea4;
	background: none;
	padding: 10px;
	padding-left: 30px;
	width: 100%;
	font-size: 20px;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #a4cea4;
}

.login__submit {
	background: #13BA13;
	font-size: 20px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 15px;
	border: 1px solid #a4cea4;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	width: 100%;
	color: #FFFFFF;
	box-shadow: 0px 2px 2px #a4cea4;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #a4cea4;
	outline: none;
}

.button__icon {
	font-size: 20px;
	margin-left: auto;
	color: #FFFFFF;
}

.social-login {
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;
	text-shadow: 0px 0px 8px #7875B5;
}

.social-login__icon:hover {
	transform: scale(1.5);
}
.logos {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
}

.logos img {
	width: 120px;
	height: auto;
}
