body {
    display: flex;
    height: 100vh;
    margin: 0;
}

.left-panel {
    flex: 0 0 40%; 
    background-image: url('assets/image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.right-panel {
    display: flex;
    flex-direction: column;
    background-color: rgb(251, 251, 251);
    flex: 1;
}

.right-panel-text {
    padding: 50px 50px 0;
    max-width: 600px;
}

.right-panel-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.right-panel-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.right-panel-text small {
    color: #999;
}

.form-container {
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding: 30px 50px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

fieldset {
    display: grid;
    grid-template-columns: 300px 300px;
    gap: 20px;
    border: none;
    padding: 0;
    justify-content: start;
}

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

.form-group label {
    margin-bottom: 2px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-group input {
    padding: 6px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    max-width: 70%; /* or whatever percentage you want */
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

  .right-panel button {
      width: 200px;
      padding: 12px 24px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      margin: 20px 0 0 50px;
      display: block;
      transition: background-color 0.2s ease, transform 0.1s ease;
  }

  .right-panel button:hover {
      background-color: #1b70cb;
      transform: translateY(-1px);
  }

  .right-panel button:active {
      transform: translateY(0);
  }

.login-link {
    margin: 15px 0 0 50px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}
