@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100&display=swap');

/* Default Sizes */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items:center;
}
.bg{
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color:rgb(205, 242, 255);
    background-image: url(/assets/img/123261.png);
    background-repeat: repeat;
    background-size:100px;
    background-position:center; 
    filter: opacity(0.5) blur(3px);
    z-index: -1;
}

.container {
    width: 500px;
    height: 500px;
    background-color: #00ffff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border-radius: 25px;
    position: relative;
    filter: opacity(0.8);
}

.container input[type=text]{
    margin-top: 40px;
    width: 90%;
    outline: none;
    border: 1px solid #ff00ff;
    border-radius: 45px;
    font-size: 1.4rem;
    text-align: center;
    color: #333;
}
.container input[type=text]::placeholder{
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
}
.container button{
    border-radius: 25px;
    background-color: #ff79c0;
    padding: 10px;
    border: none;
    box-shadow: 2px 4px 20px rgba(150, 45, 255, 0.363);
    display: inline-flex;
    width: 220px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: all .5s ease;
}
.container button:active{
  transform: scale(.8);
}
.container h2{
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    padding: 30px 0;
    position: absolute;
    top:0;
    text-transform: uppercase;
}

.container p{
    font-weight: 500;
    color: #293732;
    position: absolute;
    bottom: 0;
    text-transform:capitalize;
}

.container .choose{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height:20% ;
}



.container .choose li a{
    text-decoration: none;
    color: #212121;
    display: inline-flex;
    width: 120px;
    height: 25px;
    background-color: #f8ff79;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.choose-data {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff567;
    width: 150px;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    transition: all .5s ease;
  }
  
  /* Hide the browser's default checkbox */
  .choose-data input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
   
  }
  .choose-data:active {
    transform: scale(.8);
  }
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
  }
  
  /* On mouse-over, add a grey background color */
  .choose-data:hover input ~ .checkmark {
    background-color: transparent;
  }
  
  /* When the checkbox is checked, add a blue background */
  .choose-data input:checked ~ .checkmark {
    background-color: #fff567;
    border-radius: 25px;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .choose-data input:checked ~ .checkmark:after {
    display: block;
   
  }
  
  /* Style the checkmark/indicator */
  .choose-data .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #ff3838;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }