/* sign-up.css */

body {
    background: linear-gradient(to right, #460f0f, #2d2b91);
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  
  .card {
    color: #d39b02;
    background-color: black;
    margin: 40px auto;
    max-width: 400px;
    border: solid 1px gray;
    box-shadow: 0 0 30px rgba(198, 22, 252, 0.5);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    text-align: center;
  }
  
  .error {
    color: red;
    font-size: 14px;
    margin-top: -8px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
  }
  
  a {
    color: whitesmoke;
    text-decoration: none;
  }
  
  .link:hover {
    color: #8e8e8e;
  }
  
  .privacy, .login {
    color: #d39b02;
    font-size: 16px;
    margin: 15px auto;
    width: 80%;
    text-align: center;
  }
  
  .bi-google {
    margin-top: 10px;
    float: top;
    margin-right: 12px;
  }
  

  
  .googlebtn:hover {
    transform: scale(0.95);
    color: #181818;
  }
  
  #signup-form {
    width: 100%;
    margin-top: 20px;
  }
  
  #signup-form label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 20px;
  }
  
  #signup-form input {
    font-size: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    width: 85%;
    padding: 10px;
    margin: 5px auto 10px;
    border: 1px solid #8e8e8e;
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
  }
  
  #signup-form button[type="submit"] {
    background-color: #b03cfe;
    color: white;
    padding: 10px 0;
    width: 90%;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 25px auto 10px;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
    white-space: nowrap;
  }

 
  
  #signup-form button[type="submit"]:hover {
    background-color: #e0a416;
    transform: scale(0.95);
  }
  
  /* Responsive: Make card and content bigger on smaller screens */
  @media screen and (max-width: 600px) {
    .card {
      max-width: 95%;
      padding: 30px 10px;
      margin: 10px;
    }
  
    #signup-form input {
      font-size: 15px;
      padding: 14px;
    }
  
    #signup-form label {
      font-size: 18px;
    }
  
    .googlebtn,
    #signup-form button[type="submit"] {
      font-size: 18px;
      padding: 14px 0;
    }
  
    .privacy,
    .login {
      font-size: 22px;
    }
  }

  .input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-wrapper input {
    width: 100%;
    padding: 13px 40px 13px 12px; /* right padding for the icon */
    border-radius: 10px;
    border: 2px solid #d6d6d6;
    font-size: 16px;
    transition: 0.2s;
}

.input-wrapper input:focus {
    border-color: #6721dd;
    outline: none;
    box-shadow: 0 0 8px rgba(103, 33, 221, 0.3);
}

.eye {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 24px;
    opacity: 0.9;
    transition: 0.2s;
    user-select: none;
}

.eye:hover {
    opacity: 1;
}
