* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #f3f5fd, #ebd8ff);
}

.top-bar {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    width: 100%;
    height: 86px;
    background-color: #ffffff;
    border-bottom: 1px solid black;
    padding: 32px 124px;
    margin: 0;
    font-family: 'Roboto';
    color: #010005;
    text-align: center;
}
.top-bar a {
    text-decoration: none;
}
.login-wrapper {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); */
}

.container {
    width: 80%;
    max-width: 80%;
    padding: 20px;
  /* border: 2px dashed black; */
}

.main-panel {
    float: left;
    /* border: 2px dashed white; */
    box-shadow: none;
    font-size: 1.65em;
    font-family: 'Roboto Condensed';
}

.inner-panel {
    margin-left:46px;
    font-size: 1.0em;
    font-family: 'Roboto Condensed';
}


.login-box {
  flex: 1;
  padding: 40px 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: fit-content;
  max-height: 340px;
}

.login-box h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  font-family: 'Roboto';
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #667eea;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #5a67d8;
}

#error-message {
  color: red;
  margin-top: 10px;
  text-align: center;
}

/* Left Panel */
.left-panel {
  flex: 1;
  background: #667eea;
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.left-panel h1 {
  margin-bottom: 10px;
}

.left-panel p {
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
  }

  .left-panel, .login-box {
    flex: none;
    width: 100%;
  }

  .left-panel {
    padding: 20px;
  }

  body {
    height: 100vh;
    align-items: left;
  }

  .top-bar {
      padding: 32px 24px;
  }

  .main-panel {
      font-size: 1.05em;
  }

  .inner-panel {
      font-size: 1.25em;
  }

  .burger {
    display: inline-flex;
  }
  .menu1 {
    display: none;
  }

}
