@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");

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

body {
  display: flex;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.image-section {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-section {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  margin-bottom: 40px;
}

.login-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #5e4aba;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: none;
  background: #f8f8f8;
  font-size: 1rem;
  margin-top: 8px;
}

.form-group label {
  font-size: 0.9rem;
  color: #5e4aba;
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-password a {
  color: #4444ff;
  text-decoration: none;
  font-size: 0.9rem;
}

.submit-btn {
  background: #5e4aba;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #2d195e;
}

.alternative-login {
  margin-top: 30px;
  text-align: center;
}

.alternative-login p {
  color: #666;
  margin-bottom: 15px;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.3s ease;
}

.social-btn:hover {
  background: #eeeeee;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.create-account {
  text-align: center;
  margin-top: 20px;
}

.create-account a {
  color: #4444ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .image-section {
    display: none;
  }

  .login-section {
    padding: 30px;
  }
}
