h1 {
  color: #333;
}

body {
            font-family: Arial, sans-serif;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
	        height: 100vh;
            background-color: #ffffff;
            overflow-y: auto;
}

.containerh {
        display: none;
        align-items: center;
        background-image: url("img/bg-m1.jpg");
        background-size: cover;
        background-position: center; /* Center the image */
        background-repeat: no-repeat;
	    justify-content: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
}

.container {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: white;
	    width: 100%;
	    justify-content: center;
	    position: fixed;
	    top: 0;
}

.container2 {
        display: none;
        flex-direction: row;
        align-items: center;
        background-color: white;
	    width: 100%;
	    justify-content: center;
        overflow-y: auto;
        overflow-x: hidden;
}

.container3 {
            display: none;
            flex-direction: column;
            align-items: center;
            padding-top: 15px;
            background-color: white;
	    justify-content: center;
	    gap: 3vh;
	    margin-top: 7vh;
            width: 100%;
}
     
.logo {
            width: 25%;
            height: auto;
	    margin-left: 3.5vw;
}

.spinner {
 	width: 40px;
 	height: 40px;
 	animation: spinner-y0fdc1 2s infinite ease;
 	transform-style: preserve-3d;
}

.spinner > div {
 	background-color: rgba(178, 183, 191 ,0.2);
 	height: 100%;
 	position: absolute;
 	width: 100%;
 	border: 2px solid #a2a7b3;
}

.spinner div:nth-of-type(1) {
 	transform: translateZ(-22px) rotateY(180deg);
}

.spinner div:nth-of-type(2) {
 	transform: rotateY(-270deg) translateX(50%);
 	transform-origin: top right;
}

.spinner div:nth-of-type(3) {
 	transform: rotateY(270deg) translateX(-50%);
 	transform-origin: center left;
}

.spinner div:nth-of-type(4) {
 	transform: rotateX(90deg) translateY(-50%);
 	transform-origin: top center;
}

.spinner div:nth-of-type(5) {
 	transform: rotateX(-90deg) translateY(50%);
 	transform-origin: bottom center;
}

.spinner div:nth-of-type(6) {
 	transform: translateZ(22px);
}

@keyframes spinner-y0fdc1 {
 	0% {
  		transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
 	}

 	50% {
  		transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
 	}

 	100% {
  		transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
 	}
}



.card {
  width: 70%;
  background: #e0ebeb;
  color: black;
  position: relative;
  border-radius: 2.5em;
  padding: 2em;
  transition: transform 0.4s ease;
}

.card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5em;
  height: 100%;
  transition: transform 0.4s ease;
}

.card .card-top, .card .card-bottom {
  display: flex;
  justify-content: space-between;
}

.card .card-top p, .card .card-top .card-title, .card .card-bottom p, .card .card-bottom .card-title {
  margin: 0;
}

.card .card-title {
  font-weight: bold;
}

.card .card-top p, .card .card-bottom p {
  font-weight: 600;
}

.card .card-bottom {
  align-items: flex-end;
}

.card .card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.card .card-image svg {
  width: 4em;
  height: 4em;
  transition: transform 0.4s ease;
}

.card:hover {
  cursor: pointer;
  transform: scale(0.97);
}

.card:hover .card-content {
  transform: scale(0.96);
}

.card:hover .card-image svg {
  transform: scale(1.05);
}

.card:active {
  transform: scale(0.9);
}

.signin_img{
	width: 100%;
	margin-right: -4vw;
    margin-top: 5vh;
	align: center;
	height: auto;
}

.rainbow-hover {
  font-size: 16px;
  font-weight: 700;
  margin-top: 6vh;
  color: #ff7576;
  background-color: #2B3044;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 24px;
  position: relative;
  line-height: 24px;
  border-radius: 9px;
  box-shadow: 0px 1px 2px #2B3044,
    0px 4px 16px #2B3044;
  transform-style: preserve-3d;
  transform: scale(var(--s, 1)) perspective(600px)
    rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  perspective: 600px;
  transition: transform 0.1s;
}

.sp {
  background: linear-gradient(
      90deg,
      #866ee7,
      #ea60da,
      #ed8f57,
      #fbd41d,
      #2cca91
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: block;
}

.rainbow-hover:active {
  transition: 0.3s;
  transform: scale(0.93);
}

.home_img{
	width: 50%;
	margin-right: -4vw;
	align: center;
	height: auto;
}

.container_g {
  color: #000000;
  position: relative;
  font-family: arial;
  margin-right: 25px;
}

.container_g::before,
.container_g::after {
  content: "";
  background-color: #ffd633;
  position: absolute;
}

.container_g::before {
  border-radius: 50%;
  width: 5rem;
  height: 6rem;
  top: 30%;
  right: 7%;
}

.container_g::after {
  content: "";
  position: absolute;
  height: 3rem;
  top: 8%;
  right: 5%;
  border: 1px solid;
}

.container_g .box {
  width: 10.875em;
  height: 13.875em;
  padding: 1rem;
  background-color: rgba(153, 153, 153, 0.08);
  border: 1px solid rgba(153, 153, 153, 0.222);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0.7rem;
  transition: all ease 0.3s;
}

.container_g .box {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.container_g .box .title {
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.container_g .box div strong {
  display: block;
  margin-bottom: 0.5rem;
}

.container_g .box div p {
  margin: 0;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.container_g .box div span {
  font-size: 0.7rem;
  font-weight: 300;
}

.container_g .box div span:nth-child(3) {
  font-weight: 500;
  margin-right: 0.2rem;
}

.container_g .box:hover {
  box-shadow: 0px 0px 20px 1px #ffbb763f;
  border: 1px solid rgba(255, 255, 255, 0.454);
}

.btn {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #40B3A2;
  min-width: 42vw;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.btn:hover {
  opacity: .95;
}

.btn .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.btn2 {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #ff0000;
  min-width: 42vw;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.btn2:hover {
  opacity: .95;
}

.btn2 .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

.btn3 {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #002233;
  min-width: 42vw;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
}

.btn3:hover {
  opacity: .95;
}

.btn3 .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

.radio-inputs {
  position: relative;
  display: flex;
  border-radius: 0.5rem;
  background-color: rgba(217, 217, 217, 0.6);
  box-sizing: border-box;
  font-family: arial;
  font-size: 3.7vw;
  width: 70%;
  height: 15%;
  margin-top: 1vh;
  padding: 1rem 1rem 0 1rem;
}

.radio-inputs .radio input {
  display: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border: none;
  padding: 0.5rem 0.8rem;
  color: #000000;
  transition: all 0.15s ease-in-out;
  position: relative;
  gap: 1vw;
}

.radio-inputs .radio input:checked + .name {
  background-color: #ffffff;
  font-weight: 600;
  color: #cc8800;
}
.radio-inputs .radio input + .name:hover {
  color: #cc8800;
}
.radio-inputs .radio input:checked + .name:hover {
  color: #cc8800;
}

.container4{
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 2vh;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 23%;
}

#home4{
  margin-top: -4vh;
}
.footer {
  width: 100%;
  height: 10%;
  background-color: rgba(217, 217, 217, 0.6);
  border: 1px solid rgba(153, 153, 153, 0.222);
  display: none;
  align-items: center;
  justify-content: left;
  transition: 0.5s ease-in-out;
  margin-top: 8vh;
  position: fixed;
  bottom: 0;
}

.footer:hover {
  cursor: pointer;
}

.h1t{
  font-size: 12px;
  margin: 5px;
  padding: 5px;	
  color: #000000;
}

.login-container1 {
  background-color: rgba(0, 0, 0, 0.86);
  border-radius: 8px;
  padding: 2vw;
  width: 85%;
  height: 70%
  text-align: center;
  margin: auto;
  align-items: center;
}

.login-container {
  background-color: rgba(0, 0, 0, 0.0523);
  border-radius: 8px;
  padding: 2vw;
  width: 85%;
  height: 70%
  text-align: center;
  margin: auto;
  align-items: center;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.heading {
  color: #009933;
  font-weight: 500;
  font-size: 6vw;
  margin-bottom: -1vw;
}

.input-group {
  margin-bottom: 1vh;
  width: 90%;
}

.input-group input {
  background: none;
  border: 1px solid #cccccc;
  padding: 15px 23px;
  font-size: 16px;
  border-radius: 8px;
  color: #979797;
  width: 90%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(0, 0, 0S / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.input-group input:focus {
  border-color: #40B3A2;
  outline: none;
}

.input-group select {
  background: none;
  border: 1px solid #cccccc;
  padding: 15px 23px;
  font-size: 16px;
  border-radius: 8px;
  color: #979797;
  width: 100%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(0, 0, 0S / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.input-group select:focus {
  border-color: #40B3A2;
  outline: none;
}

.sub1 {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #40B3A2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 80%;
}

.sub1:hover {
  background-color: #2f8377;
}

.bottom-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

.bottom-text a {
  color: #0173ed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bottom-text a:hover {
  color: #3f95f2;
}

.sub2 {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #ff1a1a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 80%;
}

.sub2:hover {
  background-color: #990000;
}

.heading2 {
  color: #fc0335;
  font-weight: 500;
  font-size: 6vw;
  margin-bottom: -1vw;
}

.sub3 {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background-color: #002233;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 80%;
}

.sub3:hover {
  background-color: #004466;
}

.heading3 {
  color: #36b383;
  font-weight: 500;
  font-size: 6vw;
  margin-bottom: -1vw;
}

.heading4 {
  color: #050a26;
  font-weight: 500;
  font-size: 6vw;
  margin-bottom: -1vw;
}

.input-group2 {
  margin-bottom: 1vh;
  width: 90%;
}

.input-group2 input {
  background: none;
  border: 1px solid #cccccc;
  padding: 15px 23px;
  font-size: 16px;
  border-radius: 8px;
  color: #979797;
  width: 90%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(0, 0, 0S / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.input-group2 input:focus {
  border-color: #ff1a1a;
  outline: none;
}

.input-group2 select {
  background: none;
  border: 1px solid #cccccc;
  padding: 15px 23px;
  font-size: 16px;
  border-radius: 8px;
  color: #979797;
  width: 100%;
  box-shadow: rgb(136 136 136 / 17%) 0px -23px 25px 0px inset,
    rgb(0, 0, 0S / 23%) 0px -36px 30px 0px inset,
    rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.input-group2 select:focus {
  border-color: #ff1a1a;
  outline: none;
}


@media (min-width: 600px) {
    .home_img {
        width: 350px; /* Fix the image width to 300px */
        height: auto; /* Fix the image height to 300px (optional) */
	margin-right: 0vw;
    }

    #home4{
      margin-top: 0vh;
    }
    .containerh {
      background-image: url("img/bg-d1.jpg");
    }

    .btn2, .btn, .btn3 {
	min-width: 220px;
    }

    .logo {
	width: 13%;
    }

    .container_g .box {
  	width: 20.875em;
  	height: 14.875em;
    }

    .container_g .box .title {
  	font-size: 1.5rem;
    }

    .radio-inputs{
	font-size: 1vw;
	width: 80%;
  	height: 15%;
  	margin-top: 1vw;
    }
    
    .heading, .heading2, .heading3, .heading4 {
  	font-size: 1.5vw;
    }

    .login-container, .login-container1 {
  	width: 30%;
  	height: 70%
    }

    .card {
      width: 60%;
    }

    .signin_img {
      width: 40%;
    }

    .sub1, .sub2, .sub3 {
      width: 60%;
    }

    #signinbtn{
      margin-top: 5vh;
    }
}
