@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	color: #fff;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background-image: linear-gradient(120deg, #28ceff 0%, #145eff 100%);
}

.login-form {
	width: 1100px;
	height: 650px;
	display: flex;
	flex-direction: row;
	border-radius: 5px;
}

.info-field {
	width: 55%;
	height: 100%;
	padding: 30px;
	display: flex;
	gap: 2em;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	border-radius: 5px 0 0 5px;
	background-image: url("../img/background1.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.info-field .logo-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-wrap img {
	width: 125px;
	height: 120px;
}

.info-field .text-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2em;
	justify-content: space-between;
	align-items: center;
}

.text-wrap h1 {
    font-size: 50px;
    font-weight: bolder;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}

.text-wrap h2 {
    font-size: 20px;
    font-weight: bolder;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}

.text-wrap p {
    font-size: 35px;
    font-weight: bold;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}

.info-field .website-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 2em;
	justify-content: space-between;
	align-items: center;
}

.website-wrap p {
    font-size: 14px;
    font-weight: 600;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}

.input-field {
	width: 45%;
	height: 100%;
    padding: 55px 30px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	border-radius: 0 5px 5px 0;
	background: #fff;
}

.input-field .header-wrap {
	width: 100%;
	height: 20%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header-wrap h1{
    color: black;
    font-size: 30px;
    font-weight: bold;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}

.input-field .input-wrap {
    position: relative;
    width: 85%;
    height: 50px;
    margin-top: 30px;
}

.input-wrap label {
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 16px;
	color: #74788d;
	transform: translateY(-50%);
	transition: 0.5s;
}

.input-wrap input:focus~label, .input-wrap input:valid~label {
	top: -5px;
	color: black;
}

.input-wrap input {
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	background: transparent;
	font-size: 16px;
	font-weight: 600;
	color: black;
	border-bottom: 2px solid #74788d;
	padding-right: 23px;
	transition: 0.5s;
}

.input-wrap input:focus, .input-wrap input:valid {
	border-bottom: 2px solid black;
}

.input-wrap i {
	position: absolute;
	top: 50%;
	right: 0;
	color: #74788d;
	font-size: 18px;
	transform: translateY(-50%);
	transition: 0.5s;
}

#hidePass {
	cursor: pointer;
}

.input-wrap input:focus~i, .input-wrap input:valid~i {
	color: black;
}

.input-field .button-wrap {
    width: 100%;
    height: 50px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-wrap button {
	position: relative;
	width: 60%;
	height: 45px;
	color: black;
	background: #145eff;
	border-radius: 40px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	border: 2px solid black;
}

.button-wrap button:hover {
	background: #28ceff;
	color: black;
	border: 2px solid black;
}

.input-field .footer-wrap {
	width: 100%;
	height: 30%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: flex-end;
	align-items: center;
}

.footer-wrap p {
    color: black;
    font-size: 14px;
    font-weight: 600;
    font-family: Poppins, Sans-Serif;
    text-align: center;
}