@charset "UTF-8";
/* CSS Document */
*,
body {
}

html,
body {
    height: auto;
    overflow-x: hidden; /* Prevent horizontal overflow */
    overflow-y: auto; /* Allow vertical scrolling only if necessary */
}

/* ------ Custom Checkboxes w/ FontAwesome ------
-- https://codepen.io/jamesbarnett/pen/nYxgNG -- */
input[type=checkbox] {
	display: none
}
/* to hide the checkbox itself */
input[type=checkbox] + label:before {
	font-family: FontAwesome;
	display: inline-block
}
input[type=checkbox] + label:before {
	content: "\f096";
	color: #98B4B4;
	letter-spacing: 10px
}
/* unchecked icon */
input[type=checkbox]:checked + label:before {
	content: "\f00c";
	color: #fff;
	letter-spacing: 8px
}
/* checked icon */
/* My Adds STOP */
/* ----- Gradient Background -----
----- https://cssgradient.io/ --- */
.form-body {
    display: flex;
    flex-direction: column;   /* This ensures the child elements stack vertically */
    justify-content: center;  /* This vertically centers the child elements */
   background-image: url("../graphics/patterns/triangles_75opac.png");
    box-sizing: border-box; /* Ensure padding doesn't affect overall size */
    

}
.form-body > .row {
	position: relative;
	margin-left: 0;
	margin-right: 0;
	height: 100%
}
.img-holder {
	width: 500px;
	background-color: #3d4f5c;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	min-height: 700px;
	height: 100%;
	overflow: hidden;
	padding: 60px;
	text-align: center;
	z-index: 999
}
.img-holder .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url("../graphics/football_bg_04.jpg");
	background-size: cover;
	background-position: right center;
	z-index: -1;
	opacity: 0.8;
}
.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}
.form-holder {
    width: 100%;
   
    box-sizing: border-box; /* Ensure padding doesn't increase overall width */
    margin-left: 550px; /* Maintain margin-left on larger screens */
    
}
.form-holder .form-content {
    padding: 20px;
    min-height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.form-holder .form-content ::placeholder {
    color: #999999 !important;
}
/* Adds T5F logo on top of the .img-holder .bg image  */
.logo-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px; /* Adjust as needed */
	z-index: 1000; /* Ensure it's above the background */
}

/* -- Background Texture ------------ */
/* -- www.transparenttextures.com --- */
/* .form-content {
	background-image: url("../graphics/patterns/triangles_75opac.png")
} */
/* ---------------------------------- */
.form-content .form-items {
	max-width: 360px;
	display: inline-block;
	width: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease
}
.form-content h3 {
	color: #EAEAEA;
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 2px;
}
.form-content p {
	color: #fff;
	font-size: 16px;
}

.form-content label {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
}
.form-content .page-links {
	margin-bottom: 30px
}

.form-content .page-links a {
    color: #fff;
    display: inline-block;
    font-weight: 300;
    font-size: 15px;
    margin-right: 40px;
    letter-spacing: .07em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 3px;
    text-underline-offset: .6em;
    text-decoration-color:#98B4B4;
}

.form-content .page-links a:last-child {
	margin-right: 0;
	/* float: right; */
}

.form-content .page-links a.link-active {
	opacity: 0.6;
}

 .form-content .page-links a.link-active:hover {
    opacity: 1.0;
	font-weight: 400;
}

.form-content .page-links a.link-inactive {
	font-weight: 400;
}

.form-content .page-links a.disabled {
	pointer-events: none;
	cursor: pointer;
}

.form-content .page-links a.activeLogin:after {
	background-color: #fff
}
.form-content .page-links a:hover:after,
.form-content .page-links a:focus:after {
	background-color: #fff
}

.form-content input {
	border: 0;
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	width: 100%;
	padding: 24px;
	outline: 0;
    border: .5px solid rgb(40,57,72);  
	border-radius: 6px;
	font-size: 16px;
	font-weight: 300;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-bottom: 20px;
	letter-spacing: 1px
}

.form-content input:hover,
.form-content input:focus,
.form-content .dropdown-toggle.btn-default:hover,
.form-content .dropdown-toggle.btn-default:focus {
	background-color: rgba(82, 105, 122, 0.6);
	box-shadow: inset 0px 0px 3px #4F6161;
	color: #f3f2f2;
    border: .5px solid #98B4B4;        
}
.form-content .form-button {
	margin-top: 16px;
	margin-bottom: 12px
}
.form-content .form-button .ibtn {
	width: 100%;
	background-color: #fff;
	color: #23394A;
	-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
	border-radius: 6px;
	border: 2px solid #98B4B4;
	padding: 12px 28px;
	letter-spacing: 1px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	margin-right: 10px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.form-content .form-button .ibtn:last-child {
	margin-right: 0
}
.form-content .form-button .ibtn:hover,
.form-content .form-button .ibtn:focus {
	background-color: #98B4B4;
	color: #23394A;
	-webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16)
}
.form-content .form-button a {
	color: #fff;
	font-size: 13px;
	font-weight: 700
}

/* -- Copyright / Privacy / Contact Section ---- */
.form-content .other-links {
    display: flex;
    justify-content: space-between;  /* This will make the groups spread out across the space */
}
 /* This allows the copyright group to take up the available space and center itself */
.form-content .other-links .copyright-group {
    flex-grow: 1; 
    text-align: center;
}

.form-content .other-links .contact-group {
    margin-left: auto; /* This will push the contact group to the right */
}

.form-content .other-links span, .form-content .other-links a {
    color: #becbd2;
    font-size: 10px;
    font-weight: 300;
    margin: 0;
}

.form-content .other-links a i:hover, .form-content .other-links a i:focus {
    opacity: 0.8;
}
/* -------------------------- */

.form-content .row {
	margin-right: -6px;
	margin-left: -6px
}

.input-container {
    display: flex;
    align-items: center;  /* This will vertically center the tooltip with the input */
}
/* -------------------------- */
/*-- Tooltip in Input Fields ---------*/
 /* used to style/position info icon */
.tool-tip {
  position: relative;
  z-index: 1;
  left: -15px;
  bottom: 10px;
  color: #98B4B4;
  font-size: 16px;
  margin-left: -14px;
}

/* Style/position tooltip box & text */
.tool-tip .tool-tip-text {
  visibility: hidden;
  width: 200px;
  font-size: 12px;
  text-align: left;
  background-color: #7a9f9f;
  color: #fff;
  border-radius: 8px;
  padding: 4px 16px;
  position: absolute;
  z-index: 2;
  bottom: 25px;
  right: -3px;
  letter-spacing: .03em;
}

/* Style/position tooltip arrow */
.tool-tip .tool-tip-text::after {
  content: "";
  position: absolute;
  top: 97%;
  right: 5px;
  border-width: 6px;
  border-style: solid;
  border-color: #7a9f9f transparent transparent transparent;
}


/* ---- Cloud Animations ---- */
.clouds {
	position: relative
}
.clouds img.football1 {
	top: -75px;
	width: 120px;
	animation: football1 35s linear 1s infinite;
	opacity: 0
}
.clouds img.football2 {
	top: 40px;
	width: 80px;
	-webkit-animation: football2 15s linear 7s infinite;
	animation: football2 15s linear 7s infinite;
	opacity: 0
}
/* ---- Cloud Animations ---- */
/* Football 1 */
@-webkit-keyframes football1 {
	0% {
		opacity: 0;
		right: 0
	}
	40% {
		opacity: 0.8
	}
	90% {
		opacity: 0.5
	}
	100% {
		opacity: 0;
		right: 100%
	}
}
@keyframes football1 {
	0% {
		opacity: 0;
		right: 0
	}
	40% {
		opacity: 0.8
	}
	80% {
		opacity: 0.5
	}
	100% {
		opacity: 0;
		right: 100%
	}
}
/* Cloud 2 */
@-webkit-keyframes football2 {
	0% {
		opacity: 0;
		right: 10%
	}
	40% {
		opacity: 0.3
	}
	100% {
		opacity: 0;
		right: 50%
	}
}
@keyframes football2 {
	0% {
		opacity: 0;
		right: 10%
	}
	40% {
		opacity: 0.3
	}
	100% {
		opacity: 0;
		right: 50%
	}
}
/* Loader Animation */
@-webkit-keyframes cloud-bounce {
	0%,
	100% {
		-webkit-transform: scale(0.0)
	}
	50% {
		-webkit-transform: scale(1.0)
	}
}
@keyframes cloud-bounce {
	0%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0)
	}
	50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0)
	}
}
/* --------------------------------------
    12. Page Loader
-------------------------------------- */
.loader {
	display: none;
	position: fixed;
	background: #f6f6f6;
	z-index: 1040;
	height: 100%;
	width: 100%;
	overflow: hidden
}
.spinner {
	margin: auto;
	width: 60px;
	height: 60px;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0
}
.loader .football1,
.loader .football2 {
	width: 60px;
	height: 60px;
	display: inline-block;
	position: absolute;
	left: 0;
	right: 0;
	-webkit-animation: cloud-bounce 3.0s infinite ease-in-out;
	animation: cloud-bounce 3.0s infinite ease-in-out
}
.loader .football2 {
	top: auto;
	-webkit-animation-delay: -1.5s;
	animation-delay: -1.5s
}
/* -----------------------------------
    2 - Responsive Styles
------------------------------------*/
@media (max-width: 992px) {
	.form-holder {
        margin-left: 0; /* Remove margin-left on small screens */
        padding: 0px; /* Reduce padding on smaller screens */
	}
	.img-holder {
		display: none; /* Ensure it's hidden on smaller screens */
	}
	.form-content input {
		padding: 28px 15px;
		font-size: 18px
	}
	.form-content .form-button .ibtn {
		font-size: 16px
	}
/* .form-holder .form-content {
		padding: 0px 20px
	}*/
}
/* 
@media (min-height: 700px) {
	.img-holder {
		position: fixed;
	}
} */