.fira-sans-thin {
  font-family: "Fira Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.fira-sans-extralight {
  font-family: "Fira Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.fira-sans-light {
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fira-sans-regular {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fira-sans-medium {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fira-sans-semibold {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fira-sans-bold {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fira-sans-extrabold {
  font-family: "Fira Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fira-sans-black {
  font-family: "Fira Sans", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.fira-sans-thin-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.fira-sans-extralight-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.fira-sans-light-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.fira-sans-regular-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.fira-sans-medium-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.fira-sans-semibold-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.fira-sans-bold-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.fira-sans-extrabold-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.fira-sans-black-italic {
  font-family: "Fira Sans", sans-serif;
  font-weight: 900;
  font-style: italic;
}

  
  /* Apply font to all elements */
  body {
    font-family: 'fira-sans', Arial, sans-serif; /* Fallback fonts */
	padding: 0px;
	margin: 0px;
	background-color: #205a41;
}
  
*{
    box-sizing: border-box;
}
.main{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.image-container{
	width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 20px 0px;
}
.header-image{
	width: 60%;
}
.form{
  width: 500px;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 40px 48px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
}
@media only screen and (max-width: 500px) {
    .form{
    	width: 90%;
    	padding: 40px 20px;
	}
}


.input-container{
  width: 100%;
}
.input_label{
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin-bottom: 5px;
  margin-left: 15px;
  position: relative;
  top: 27px;
}
.input_class{
  width: 100%;
  height: 58px;
  padding: 20px 15px 10px;
  bottom: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  outline: none;
  border-radius: 20px;
  border: 2px solid #b3b3b3;
  background-color: #fff;
}
.input_class:hover, .input_class:focus{
  border: 2px solid #c8d6a6;
}
.submit_button{
  width: 100%;
  height: 50px;
  background-color: #c8d6a6;
  cursor: pointer;
  outline: none;
  border: 1px solid #c8d6a6;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 12px;
  margin-top: 30px;
  border-radius: 20px;
}
.submit_button:hover, .submit_button:focus{
  background-color:#c8d6a6;
}
.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Pushes the footer to the bottom */
  background-color: #fff; /* Adjust as needed */
  padding: 40px 30px;
  gap: 30px;
}
.footer-left{
	width: 300px;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.footer-links{
	margin-top: 20px;
	font-size: 12px;
	text-decoration: underline;
	text-align: center;
	color: #c8d6a6;
	cursor: pointer; 
}
@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
.spin::before {
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 6px #cfd0d1;
  border-bottom-color: #c8d6a6;
  border-radius: 50%;
  content: "";
  height: 4rem;
  width: 4rem;
  position: absolute;
  top: 30%;
  left: 50%;
}
.error {
    border: 1px solid #ff654d;
    animation: shake 0.5s;
}
.error-message {
    color: #ff654d;
    font-size: 12px;
    font-weight: 400;
	top: 55px;
	margin-left: 10px;
	margin-bottom: 5px;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
.otp-timer{
	font-size: 12px;
	margin-left: 10px;
	color: #333;
	top: 40px;
}
#timer {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ff654d;
}
#resend {
    display: none;
    text-decoration: underline;
    color: #3c8dbc;
    cursor: pointer;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 999;
}
.forgot_label{
	margin-top: 20px;
	font-size: 12px;
	text-align: center;
}
.register_label{
	margin-top: 20px;
	font-size: 16px;
	text-align: center;
	color:#c8d6a6;
	cursor: pointer; 
}

 /* The switch - the box around the slider */
.switch {
  width: 50px;
  height: 24px;
	position:relative;
	left: -42%;
	color: #787070;
	cursor:pointer;
	margin-top: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.remember-me-label{position:relative;left: -80px; top: -38px;color: #666;}
input:checked + .slider {
  background-color: #c8d6a6;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0CAFFF;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(25px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 50px;
}

.slider.round:before {
  border-radius: 50%;
}    

@media only screen and (max-width: 450px) {
	.remember-me-label{left: -50px;}
}
@media only screen and (max-width: 400px) {
	.remember-me-label{left: -40px;}
}