/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    /* background: url('../images/night-sky.jpg') no-repeat center center/cover; */
    background: rgb(2,0,19);
    background: linear-gradient(90deg, rgba(2,0,19,1) 0%, rgba(8,8,92,1) 98%, rgba(8,8,92,1) 99%, rgba(8,8,92,1) 100%);
    background-color: #f4f4f4;
    height: 100vh; /* Full height of the viewport */
    display: flex;
    align-items: center; /* Vertically center the form */
    justify-content: center; /* Horizontally center the form */
  }

  /* Feedback Form Container */
  #feedback-form {
    max-width: 450px;
    background-color: rgba(9, 127, 244, 0.362);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px white;
    text-align: center;
    color: white; /* Text color set to white */
  }

  /* Form Elements */
  form {
    margin-top: 15px;
  }

  label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
    color: white; /* Label color set to white */
  }

  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.1); /* Light background */
    color: white; /* Input text color */
  }

  textarea {
    resize: vertical;
    min-height: 150px;
  }

  /* Submit Button */
  button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #45a049;
  }

  .back-arrow {
    position: absolute; /* Position it absolutely within the body */
    top: 20px; /* Distance from the top */
    left: 20px; /* Distance from the left */
    font-size: 64px; /* Size of the arrow */
    color: white; /* Arrow color */
    text-decoration: none; /* Remove underline */
    background-color: transparent; /* Optional: semi-transparent background */
    padding: 10px; /* Padding around the arrow */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
  }
  
  .back-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darken on hover */
  }