@import url('https://fonts.googleapis.com/css2?family=Lato&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500&family=Roboto:wght@400;500;700&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Nunito', sans-serif;
	color: var(--secondary);
 
}
:root{
    --secondary:#006167;
	--PRIMARY-CONTAINER:#D7EFDA;
	--UNPRIMARY-COLOUR: #FFF;
	--Error-Colour-Style: #E41D1D;
    --PRIMARY-COLOUR:#FABF00;  
}
body{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
}
main{
    width: 85%;
    height: 99.5%;
    background: #FFF;
    position: absolute;
    top: 3.5%;
    left: 8%;
    display: flex;
    border-radius: 1.5%;
    box-shadow: 0px 4px 20px 0px rgba(125, 239, 218, 0.80);
  

}
h3{
    color: var(--Secondary-Colour, #006167);
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.2rem; 
    margin-top: 2%;
}
h4{
    color: var(--Secondary-Colour, #006167);
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1rem; /* 120% */
    margin-top: 2%;
}
a{
    text-decoration: none;
}
input{
    border: 1px solid var(--Secondary-Colour,#006167);
}
::placeholder{
    color: var(--Subwords, rgba(18, 18, 18, 0.70));
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.035px;
}
.left, .right{
    width: 50%;
}

.img-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 92%;
    background-image: url('../images/signup_new.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    border-bottom-left-radius: 1.5%;
    border-top-left-radius: 1.5%;
}


.content{
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative; 
}

.content .logo{
    width: 30%;
}
.content .logo img{
    width: 100%;
    
}
.half-width{
    
    gap: 10px;
    margin-top: 4%;
    width: 90%;
    display: flex;
}
.half-width input{
    width: 80%;
    

}


 .check{
    width: 100%;
    display: flex;
}
.check{
  align-items: center;
  justify-content: center;
  gap: 10px ;
}
.check span{
    color: var(--Error-Colour-Style);
}
form span{
    color: var(--secondary);
}
#account{
  
    color: #272727;
    font-family: 'Lato', sans-serif;
}

.full_width{
    display: flex;
    flex-direction: column;
    width: 100%;
}
input[type='password']{
    position: relative;
}
.fa-eye-slash{
    position: absolute;
    right: 25%;
    top: 61.5%;
}
input:not([type='checkbox']):not([type='button']) {
    padding: 4.5%;
    border-radius: 10px;
    margin-bottom: 3.5%;
    width: 90%;
    
  }
input[type='button']{
    width: 95%;
    padding: 5%;
    border-radius: 10px;
    margin-top: 1%;
    background: var(--Secondary-Colour, #006167);
    color: white;
    font-size: 1.25rem;
    border: none;

  }
  input[type='button']:hover{
    color: var(--secondary);
    background: #FABF00;
  }
  input[type='check']{
    border-radius: 3px;
  }
  .horizontal{
    display: flex;
    margin-top: 0.5%;
    justify-content: space-evenly;
  }
  .social{
    display: flex;
    gap: 15px;
    margin-top: 1%;
  }
  .social img:nth-child(1), .social img:nth-child(2){
    border: 1px solid var(--Secondary-Colour, #006167);
    border-radius: 10px;
    margin-right: 5%;
    padding: 0.5%;
    margin-top: 1%;
    
  }
  
  .green{
    /* width: 286px;
    height: 286px; */
    width: 200px;
    height: 200px;
    /* flex-shrink: 0; */
    position: absolute;
    border-radius: 286px;
    background: var(--Secondary-Colour, #006167);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    /* margin-top: 1100px; */
    /* z-index: 99999; */
    z-index: 10;
    bottom: -60px;
    right: -80px;
}
.yellow{
    /* width: 390px;
    height: 390px; */
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--PRIMARY-COLOUR, #FABF00);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    position: absolute;
    bottom: -100px;
    right: -120px;
    z-index: -10;
}

/* pop up */
.overlay {
    position: fixed;
    top: 10%;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;

  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  .popup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 70px auto;
    padding: 25px;
    background: linear-gradient(180deg, rgba(215, 229, 239, 0.548) 0%, #D7EFDA 100%);
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 1s ease-in-out;
    color:  #121212;
    border-radius: 15px;
  }
  
  .popup h2 {
    margin-top: 0;
    color:  #121212
  }
  .popup .close {
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: var(--secondary)
  }
  .popup1 .popup .close:hover {
    color: var(--PRIMARY-COLOUR);
  }
  .popup .content1 {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 40vh;
    
  }
  .popup .content,.content_verify{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75%;
  }
    button {
    padding: 3% 5%;
    width: 40%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    background: var(--secondary);
    color: var(--UNPRIMARY-COLOUR);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
  }
  .content1 button:hover{
    background: var(--PRIMARY-COLOUR);
    color: var(--secondary);
  }
  .content1 button{
    width: 50%;
    padding: 5%;
    margin-top: 5%;
  }
  .content1 h4, .content1 p, .content1 h1{
    margin-top: 2.5%;
  }
  .post{
    display: flex;
    justify-content: center;
    align-self: center;
  }

  .content_verify .input{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 10%
    

  }
  .content_verify .input input{
    width: 10%;
    height: 10px;
    padding: 2.5%;
  }
/* RESPONSIVNESS */
@media(max-width:1024px){
    input[type='button']{
        width:80%
    }
    .fa-eye-slash{
        right: 13%;
        top: 49%;
    }
    .green{
        width: 150px;
        height: 150px;
        right: -30px;
    }
    .yellow{
        width: 250px;
        height: 250px;
        right: -80px;
    }
}
@media (max-width: 768px) {
    .left, .green,.yellow{
        display: none;

    }
    .right{
        width: 100%;
    }
    main{
        position: static;
        width: 100%;
        height: 100vh;
        box-shadow: none;
        overflow-x: hidden;
        margin-inline: 0;
    }
    .fa-eye-slash{
        right: 28%;
        top: 51%;
    }
  }
  @media (max-width: 425px) {
    .fa-eye-slash{
        right: 10%;
        top: 48%;
    }
  }
  @media (max-width: 375px) {
    main{
        width: 90%;
        padding: 1%;
        overflow-x: hidden;
    }
  }