body {
    display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-size:cover;
      backdrop-filter: blur(8px);
      background-image: url('https://i.ibb.co/28SkK0t/IMG-6117.jpg');
      color: white;
      overflow: hidden;
      background-repeat: no-repeat;
  }

  .select {
    padding: 5px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  border: 3px solid transparent; /* Beginne mit einer transparenten Border */
  transition: transform 0.5s ease, border 0.5s ease; /* Füge 'border' zur Transition hinzu */
  margin: 10px;
  color: rgb(179, 178, 178);
  background-color: #3f3e3e;
  }

  .cretits {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #646363; /* Adjust the color as needed */
    font-size: 14px;
    background-color: #333;
    border-radius: 50px;
    padding: 10px;
  }

  .select:hover {
    border-color: rgb(43, 0, 233);
    transition: transform 0.5s ease, border 0.5s ease;
    border-width: 3px;
  }

  option{
    padding:10px;
  }
  .header {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    text-align: right;
    opacity: 0.5;
  }
  
  #forgotPassword {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

#userEmail {
  position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}
  .logo img {
    height: 80px; /* Set the desired height for your logo */
    width: auto;
    margin-left: 20px; /* Adjust this margin to move the logo to the left */
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Apply the animation to the element */
  .select {
    animation: fadeIn 0.5s;
  }