/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Universal base styles */
html, body, div, span, applet, object, iframe,
h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box; /* Ensures consistent rendering */
	font-family: 'Poppins', sans-serif; /* Sets the base font */
}
body {
    font-family: "Lato",Arial,sans-serif;
    font-size: 13px;
    line-height: 1.8;
    font-weight: normal;
    background: #f8f9fd;
    color: gray;
}
.login-wrap{
	text-align: center;
}
.loginForm {
	position: relative;
}
.social-media {
	margin-top: 20px;
}
.social-media .social-icon {
    display: block;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0,0,0,.07);
    font-size: 16px;
    margin-right: 5px;
    border-radius: 10%;
    text-decoration: none;
}
/* Universal style for all input fields within .input-group */
.loginForm .input-group {
  position: relative; /* Establishes a positioning context for absolute positioned children */
  display: flex; /* Flex display to align children inline */
}
.loginForm .input-group input {
  border: none; /* Removes the border */
  
}
.loginForm .input-group i {
  position: absolute; /* Positions the icon relative to its container */
  left: 20px; /* Positions the icon 20px from the left */
  top: 25%; /* Centers the icon vertically with a little offset */
}
.loginForm label {
  display: flex; /* Aligns label contents inline */
  align-items: center; /* Centers label contents vertically */
}
.loginForm input[type="text"],
.loginForm input[type="password"]{
	width: 100%;
	padding: 15px 20px;
	padding-left: 40px;
	margin-bottom: 20px;
	box-shadow: inset 5px 5px 10px rgba(0,0,0,0.1), inset -5px -5px 10px #fff;
}
.loginForm .icon {
	position: absolute;
	left: 20px;
	top: 25%;
}
.loginForm input[type="checkbox"]{
	margin-right: 5px;
}
#payoff {
	float: left;
	font-size: 12px;
	font-weight: 700;
}
#payoff-txt{
	display:block;
	padding:20px;
	margin-bottom:20px;	
}
#payoff-txt span{
	display: block; 
	font-size: 13px;
	float: left;
	text-align: center;
	width: 100%;
	color: #333;
	font-weight: 900;
}
.social-icon:hover {
	background-color:#0f4eb6;
	border-color:#0f4eb6;
}
.social-icon:hover span::before {
	color: #fff;
}
.social-media .social-icon span {
    color: #999;
}
.input-group i {
	font-size: 14px;
	padding: 12px;
}
.wrap {
	width: 100%;
	overflow: hidden;
	background: #fff;
	border-radius: 5px;
	-webkit-box-shadow:  15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 20px #FFFFFF;
	-moz-box-shadow:  15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 20px #FFFFFF;
	box-shadow:  15px 15px 20px rgba(0, 0, 0, 0.1), -15px -15px 20px #FFFFFF;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
}