body {
    background-color: #B63400;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }

  .header img {
    height: 60px;
    margin-right: 10px;
  }

  .header h3 {
    margin: 0;
    font-weight: bold;
  }

  .signup-container {
    max-width: 400px;
    margin: 40px auto;
    background-color: #e36031;;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }

  .form-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .helptext {
    display: none !important;
  }

  .button-success {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .button-success:hover {
    background-color: #f48158;
  }

  .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
    padding-bottom: 10px;
    margin-left: 0;
    width: 100%;
    max-width: 300px;
  }

  .form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }

  .form-check label {
    flex: 1;
    text-align: left;
    font-weight: bold;
    margin: 0;
  }

.login-links{
    color:white;
}

