* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #2f7ec9ff, #0aa5baff);
}

.login-container {
  width: 800px;
  height: 500px;
  background: white;
  display: flex;
  border-radius: 10px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.left-side {
  flex: 1;
  background: linear-gradient(135deg, #082f5cff, #2f7ec9ff);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}

.right-side {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  color: #2f7ec9ff;
  margin-bottom: 30px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}

.input-group .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}


.select-group {
  position: relative;
  margin-bottom: 20px;
}

.select-group select {
  width: 100%;
  padding: 12px 40px 12px 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  font-size: 16px;
}


.forgot-password {
  text-align: right;
  font-size: 12px;
  margin-bottom: 20px;
}

.forgot-password a {
  color: #aaa;
  text-decoration: none;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  background: linear-gradient(135deg, #2f7ec9ff, #0aa5baff);
  color: white;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 5px 10px #0aa5baff;
  transition: 0.3s;
}

button:hover {
  box-shadow: 0 8px 15px #2f7ec9ff;
}

.signup-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.signup-text a {
  color: #2f7ec9ff;
  text-decoration: none;
  font-weight: bold;
}
