* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4c4cc7;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.login-wrapper {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-section {
  width: 50%;
  padding: 40px;
  background: #fff;
}

.illustration-section {
  width: 50%;
  background-color: #e8eaf6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo img {
  height: auto;
  margin-bottom: 20px;
}

.login-header h2 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #666;
  font-size: 14px;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: #4c4cc7;
}

.forgot-link {
  display: block;
  text-align: right;
  color: #4c4cc7;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background-color: #4c4cc7;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #3f3fa5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
  }

  .login-section,
  .illustration-section {
    width: 100%;
  }

  .illustration-section {
    height: 200px;
  }

  .login-section {
    padding: 20px;
  }
  
  /* OTP*/
  
  
  
  
}