* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body, html {
    
    height: 100%;
        background-color: #fff7fa;
    /*background: linear-gradient( #dfd2f0, #d48cce);*/
    /*background: linear-gradient( #6e00ff, #d820c9);*/
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    padding: 0px;
  }
  
  .login-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;

    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .login-box h2 {

    font-size: 18px;
  }
  
  .login-box h3 {
    font-size: 8px;
    color: gray;
    margin-bottom: 30px;
  }
  .input-group {
    display: flex;
    align-items: center;
    margin: 10px 0;
    border-bottom: 1px solid #ccc;
    padding: 10px;
  }
  
  .input-group .icon {
    margin-right: 10px;
    font-size: 18px;
  }
  
  .input-group input {
    border: none;
    outline: none;
    width: 100%;
  }
  
  .forgot {
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
  }
  
  .forgot a {
    color: #555;
    text-decoration: none;
  }
  
  .login-btn {
    margin-top: 20px;
    /*background: linear-gradient(to right, #6e00ff, #e73cc2);*/
         background-color: #ff69b4;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .login-btn:hover {
    opacity: 0.9;
  }
  
  .or {
    margin: 20px 0 10px;
    font-size: 14px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons img {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .signup-text {
    font-size: 14px;
  }
  
  .signup-text a {
    color: #6e00ff;
    text-decoration: none;
    font-weight: bold;
  }

  .footer_it{
    margin-top: 40px;
    color: gray;
    font-size: 12px;
  }
  
  @media (max-width: 480px) {
    .login-box {
      padding: 30px 20px;
    }
  
    .input-group {
      padding: 8px;
    }
  
    .login-btn {
      padding: 10px;
      font-size: 14px;
    }
  
    .social-icons img {
      width: 30px;
      height: 30px;
    }
  }
  