@font-face {
    font-family: enmafont;
    src: url(researcher-researcher-thin-200.otf);
  }
  .title {
    font-size: 30px;
    font-weight: bold;
    font-family: enmafont;
    position: absolute;
    top: 10px;
    color: #0e4637;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f4f6;
    position: relative;
  }



  .card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 320px;
  }

  .card h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
  }

  .card p {
    color: #4b5563;
    margin-bottom: 24px;
  }

  .card .footer {
    margin-top: 5%;
    font-size: 14px;
    color: #6b7280;
  }

  .card .footer a {
    color: #2563eb;
    text-decoration: none;
  }

  .card .footer a:hover {
    text-decoration: underline;
  }
  .access-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .form-group label {
    margin-bottom: 4px;
    font-size: 13px;
    color: #374151;
  }

  .form-group input {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
  }

  .submit-btn {
    background-color: #0e4637;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #093024;
  }
  