@font-face {
  font-family: 'Montserrat';
  src: url('/static/font/Montserrat-Regular.ttf') format('truetype');
}
  html, body {
  font-family: 'Montserrat';
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Montserrat';
  height: 100%;
  background: white;
}

.container {
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
}

.left-panel {
  flex: 0 0 55%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}

.left-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-panel {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0rem 4rem;
}

.branding h1 {
  font-family: 'Montserrat';
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.branding p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.explore-btn {
  background-color: #1482F3;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.right-panel h2 {
  color: #033193;
  font-size: 2.25rem;
  font-weight: 600;
}

.subtitle {
  color: #78B2FB;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #D7D7D7;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  background: white;
}

.input-group img {
  width: 26px;
  height: 26px;
  opacity: 0.3;
  margin-right: 0.5rem;
}

.input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
}

.eye-icon {
  width: 24px;
  height: 24px;
  opacity: 1;
}

/* Forgot Password */
.forgot-password {
  text-align: right;
}

.forgot-password a {
  color: #78B2FB;
  text-decoration: none;
  font-weight: 500;
}

/* Login Button */
/* .login-btn {
  background-color: #78B2FB;
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid rgba(5, 103, 213, 0.7);
  border-radius: 50px;
  padding: 0.8rem;
  cursor: pointer;
} */
.login-btn {
  background-color: #78B2FB;
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  border: 1px solid rgba(5, 103, 213, 0.7);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: transform 0.1s ease-in-out, box-shadow 0.2s;
}

.login-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 8px rgba(138, 89, 252, 0.2);
}

.login-btn:hover {
  box-shadow: 0 0 12px rgba(138, 89, 252, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    border-radius: 0;
    padding: 2rem;
  }
}