:root {
  --red: #e60000;
  --green: #008000;
  --bg: #f9fafb;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
}

.login-container {
  display: flex;
  min-height: 100vh;
}

.login-left {
  flex: 1;
  background: linear-gradient(135deg, var(--red), var(--green));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.login-left .logo {
  width: 100px;
  margin-bottom: 20px;
}

.login-left h1 {
  margin: 10px 0;
  font-size: 28px;
}

.login-left p {
  font-size: 16px;
  opacity: 0.9;
}

.login-right {
  flex: 1.5;
  position: relative;
  background: url('https://images.unsplash.com/photo-1605902711622-cfb43c44367f') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-right .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  border-radius: 0;
}

.login-form {
  position: relative;
  z-index: 1;
  background: var(--card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px 5px rgb(255 2 2 / 20%);
  width: 100%;
  max-width: 350px;
  text-align: center;
}

.login-form h2 {
  margin-bottom: 20px;
  color: var(--red);
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}

.login-form button:hover {
  background: #006400;
}

.login-form .links {
  margin-top: 12px;
  font-size: 14px;
}

.login-form .links a {
  color: var(--red);
  text-decoration: none;
}

#hero .container img {
    max-width: 200px;
}
.order-1, .order-2 {
    text-align: center;
    display: ruby;
}

.space {
    padding-bottom: 20px;
}

.form_display {
    display: ruby;
}

.order-lg-1 {
    background: #017eff;
    padding: 50px 0;
}

.order-lg-1 h1, .order-lg-1 p {
    color: #fff;
}
    
@media(max-width: 768px) {
  .login-container {
    flex-direction: column;
  }
  .login-left, .login-right {
    flex: none;
    width: 100%;
    min-height: 50vh;
  }
}
