body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: black;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .container {
    width: 400px;
    padding: 30px;
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
  }
  
  .logo img {
    width: 300px;
    display: block;
    margin: 0 auto 20px;
  }
  
  h1 {
    text-align: center;
    font-size: 1.8rem;
    color: #5ccfe6;
    margin-bottom: 20px;
  }
  
  .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 2px solid #444;
  }
  
  .form-group label {
    width: 40px;
    height: 40px;
    background-color: #5ccfe6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .form-group input {
    flex: 1;
    height: 40px;
    border: none;
    outline: none;
    padding: 0 10px;
    background: transparent;
    color: #fff;
  }
  
  .btn-success {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    background-color: #5ccfe6;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .options a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #5ccfe6;
    text-decoration: none;
  }
  
  .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }
  
  .options {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  @media (max-width: 768px)  {
    .container {
      width: 80%;
      padding: 30px;
     
    }
  
  }

  