/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fafafa;
    background-image: url('blue-strips-background.png');
    background-size:cover;
  }
  nav {
    background-color: #fafafa(255, 255, 255);
    height: 100px;
    display: flex;
    align-items: center;
  }
  nav img {
    height: 30px;
    margin: 0 40px;
  }

  input {
    color: #4a4a4a;
  }

  footer {
    font-family: Arial, sans-serif;
    padding: 40px;
    position: absolute;
    bottom: 0;
  }
  footer h5 {
    margin-top: 0;
  }
  .current-environment {
    font-size: 20px;
    font-weight: bold;
    color: #181878
  }
  .other-environment a:hover {
    color: #3c35e5;
  }

  .reset-password-container {
    width: 400px;
    margin: 0 100;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 20px;
    margin-top: 150px;
    background-color: #f5f5f5;
  }
  .reset-password-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #181878;
  }
  .reset-password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .form-input {
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .reset-password-button {
    width: 100%;
    height: 40px;
    background-color: #3c35e5;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .reset-password-button:hover {
    background-color: #181878;
  }

  /* Add a little animation to the page */
  .reset-password-container {
    animation: fadein 0.5s;
  }
  .message-text {
    color: rgb(223, 5, 5);
    text-align: center;
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: 2;
  }
  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
  }

  /* Styles for the Requirements Container */
  .requirements-container {
    text-align: center;
    /* background-color: lightgray; */
    border: 1px solid #ccc;
    background-color: rgba(245,245,245,0.6);
    padding: 20px;
    margin: 0 130px;
    margin-top: 50;
    margin-bottom: -130;
    width: 340px;
    border-radius: 10px;
  }
  .requirements-container h1 {
    text-align: center;
    margin: 0 0;
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: black;
  }
  .requirements-container ul {
    text-align: left;
    list-style-position: inside;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: black;
    margin: 0 0;
  }

  /* Styles for the Services Page */
  .services-container {
    display: flex;
    padding: 0 20px;
    margin: 0 100px;
    align-items: center;
    height: 60vh;
  }
  .services-button-container {
      text-align: center;
  }
  .services-button {
      display: block;
      width: 300px;
      padding: 15px 20px;
      margin: 15px;
      font-size: 20px;
      text-align: center;
      cursor: pointer;
      border: 1px solid #ccc;
      background-color: #3c35e5;
      color: #fff;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
  }
  .services-button:hover {
    background-color: #181878;
  }
