  .signup-form {
      /*background-color: #fff8e1;*/
      padding: 30px 25px;
      border-radius: 16px;
      /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);*/
      width: 100%;
      max-width: 700px;
    }

    .signup-form h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.8em;
      color: #4e8cff;
    }

    .signup-form input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      background: #fff;
      color: #000;
    }

    .signup-form input::placeholder {
      color: #000;
    }
	
	.signup-form select {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: none;
      border-radius: 10px;
      font-size: 14px;
      background: #fff;
      color: #000;
    }

    .signup-form button {
      width: 75%;
      padding: 12px;
      background-color: #4e8cff;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      font-weight: bold;
      color: white;
      cursor: pointer;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }

    .signup-form button:hover {
      background-color: #367cd6;
    }

    .g-recaptcha {
      margin: 15px 0;
      transform: scale(1.05);
      transform-origin: 0 0;
    }
	
	.tooltip-wrapper {
	  position: relative;
	  display: inline-block;
	  width: 100%;
	}

	.tooltip-wrapper input,
	.tooltip-wrapper select {
	  width: 100%;
	  box-sizing: border-box;
	}

	.tooltip-message {
	  position: absolute;
	  top: 50%;
	  right: 1%;
	  margin-left: 12px;
	  transform: translateY(-50%);
	  background-color: #e53935;
	  color: #fff;
	  border-radius: 4px;
	  padding: 4px 8px;
	  font-size: 0.75em;
	  white-space: nowrap;
	  opacity: 0;
	  visibility: hidden;
	  transition: opacity 0.3s ease;
	  z-index: 99;
	  pointer-events: none;
	}

	.tooltip-wrapper.show .tooltip-message {
	  opacity: 1;
	  visibility: visible;
	}

    @media (max-width: 480px) {
      .signup-form {
        padding: 20px 15px;
		max-width: 400px;
      }
    }

	#desktop-warning {
      display: none;
      text-align: center;
      padding: 2rem;
      font-family: sans-serif;
      color: red;
    }

	input:-webkit-autofill,
	input:-webkit-autofill:hover, 
	input:-webkit-autofill:focus,
	select:-webkit-autofill {
	  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
	  box-shadow: 0 0 0px 1000px #fff inset !important;
	  background-color: #fff !important;
	  color: #000 !important;
	}

	.confirm-wrapper {
    max-width: 400px;
    margin: 50px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .confirm-wrapper h2 {
    margin-bottom: 10px;
    font-size: 1.6em;
  }

  .confirm-wrapper p {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #333;
  }

  .confirm-wrapper input[type="text"] {
    padding: 10px;
    width: 100%;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .confirm-wrapper button {
    background: #008cba;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .confirm-wrapper button:hover {
    background: #0076a0;
  }

  .confirm-wrapper a {
    color: #0076a0;
    text-decoration: none;
    font-size: 0.9em;
  }

  .confirm-wrapper .tooltip-message {
    display: none;
    color: red;
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 0.85em;
  }

  .confirm-wrapper .show .tooltip-message {
    display: block;
  }

  #confirmResponse {
    margin-top: 15px;
    font-size: 0.95em;
  }