* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
}
header {
height: 80px;

background-color: #ffffff !important;
  border-bottom: 1px solid #a0a0a0;
}
main {
  min-height: 78%;
}
footer {
  min-height: 10%;
}
.form-floating p {
  color: rgb(255, 38, 0);
  font-size: 0.8rem;
}
.tick {
  fill: aqua;
}
#signupF {
  position: relative;
}
#freaze {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.582);
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 20px;
  gap: 20px;
  text-align: center;
  left: 0;
  z-index: 100;
}
.spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.589);
  animation: spin 2s infinite linear;
  border-top: 4px solid rgb(100, 255, 147);
}
@keyframes spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
#freaze {
  display: none;
}
/* Import Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* Variables */
:root {
  --primary-color: #185ee0;
  --secondary-color: #e6eef9;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* body {
  font-family: "Inter", sans-serif;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
} */

/* Tabs */
.tabs {
  display: flex;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 0.5rem;
  gap: 5px;
  position: relative;
  width: fit-content;
}

input[type="radio"] {
  display: none;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 130px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.25s ease-out;
  z-index: 1;
}

.notification {
  margin-left: 0.5rem;
  background-color: var(--secondary-color);
  color: #555;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

input[type="radio"]:checked + label {
  color: var(--primary-color);
}

input[type="radio"]:checked + label .notification {
  background-color: var(--primary-color);
  color: white;
}

.glider {
  position: absolute;
  height: 40px;
  width: 120px;
  background-color: var(--secondary-color);
  border-radius: 50px;
  transition: transform 0.25s ease-out;
  z-index: 0;
}

input[type="radio"]:checked  + .tab {
  /* transform: translateX(480%); */
  background-color: var(--secondary-color);
}

.content-div {
  display: none;
  min-height: 78vh;
}
.content-div iframe {
  width: 100%;
  /* height: 100%; */
  height: 78vh;
  border: none;
}
/* .content-div :nth-child(5){
 min-height: 78vh!important; */

/* } */
.close-icon{
  display: none;
}
.hamburger-icon {
  background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 5px;
    right: 5px; 
    display: none;
}
@media only screen and (max-width: 600px) {
 
  .tabs {
   
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    
    width: 300px;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 30px ;
    top: 80px;
    left: -47px;
  }
  .tab {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
    height: 40px;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.25s ease-out;
    z-index: 1;
   
  }
  .close-icon{
    display: initial;
    background: none;
    border: none;
    color: red;
  }
  .tabs{
    display: none;
  }
  .hamburger-icon {
    display: initial;
  }
  .zsFormClass{
    width: fit-content !important;
  }
  footer{
    font-size: 10px;
    flex-direction: column;
  }
}