  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    border: none;
    outline: none;
    font-family: Poppins, sans-serif;
  }
  body {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 255, 212, 0.44) !important;
  }
  .content {
    width: 400px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(13px);
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 33px !important;
  }
  .content h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: black;
    font-family: 'Parisienne';
  }
  .input-box {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 30px 0 0 0;
  }
  .input-box input {
    background: transparent;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 20px 45px 20px 20px;
    font-size: 16px;
  }
  input {
    background-color:transparent !important;
    color:black;
    border-radius: 22px !important;
  }

  input::placeholder {
    color: gray !important;
    font-size: 16px;
  }
  .input-box i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 18px;
    color: color(srgb 0.6568 0.69 0.2518);
    cursor: pointer;
  }
  .btnn {
    display: inline-block;
    background: black;
    color: rgb(204, 215, 83);
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-top: 35px;
  }
  .alert {
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    color: white;
  }
  .alert-danger {
    background-color: #d9534f;
  }
  .alert-success {
    background-color: #5cb85c;
  }

  .checkbox-container {
margin-top: 25px;
font-size: 14px;
color: black;
}

.custom-checkbox {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
position: relative;
}

.custom-checkbox input[type="checkbox"] {
opacity: 0;
width: 0;
height: 0;
position: absolute;
}

.custom-checkbox .checkmark {
height: 18px;
width: 18px;
background-color: white;
border: 2px solid #999;
border-radius: 4px;
display: inline-block;
position: relative;
transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
background-color: rgb(204, 215, 83);
border-color: black;
}

.custom-checkbox .checkmark::after {
content: "";
position: absolute;
display: none;
}

.custom-checkbox input:checked + .checkmark::after {
display: block;
}

.custom-checkbox .checkmark::after {
left: 5px;
top: 1px;
width: 4px;
height: 9px;
border: solid black;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}