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

body {
  height: 100vh;
  background: #0e1117;
}

.login-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.left-panel {
  flex: 1;
  background-image: url("../images/login_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.right-panel {
  width: 380px;
  background: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #1e90ff;
}

.login-box {
  width: 100%;
  max-width: 320px;
}

.logo {
  max-width: 250px;
  margin-bottom: 20px;
  /* width: 90px; */
  
}

/* rest of login styles */
.signIn {
  background-color: var(--primary-color);
  color: white;
  border: none;
}
