
/* Rhizome LMS Login Styles */

body {
  font-family: 'Roboto', sans-serif;
  background: #f4f6f9;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-wrapper {
  width: 920px;
  display: flex;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.login-left {
  background: #386e3c;
  color: white;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-left img {
  width: 300px;
  margin-bottom: 10px;
}

.login-left h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.login-right {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right img {
  width: 180px;
  margin-bottom: 20px;
}

.login-right h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #386e3c;
  font-weight: 600;
}

.login-right form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 360px;
}

.form-group input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  cursor: pointer;
}

.login-btn {
  width: 100%;
  max-width: 360px;
  padding: 12px;
  background: #386e3c;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #2d5730;
}

.extra-links {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: #000;
}

.extra-links a {
  color: #386e3c;
  text-decoration: none;
}

.extra-links a:hover {
  text-decoration: underline;
}

.error-message {
  color: #e53935;
  background: #ffebee;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
}

/* Additional styles for dropdown and success alert */
.login-right select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  background-color: white;
  color: #333;
}

.alert-success {
  background: #e0f4e9;
  color: #2e7d32;
  padding: 15px;
  border-radius: 6px;
  font-size: 15px;
}

.form-group select {
   transition: all 0.2s ease-in-out;
  width: 100%;
  height: 45px; /* Optional - adjust to match input height */
  padding: 12px 40px 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-clip: padding-box;
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2010%205%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%205%205-5z%22%20fill%3D%22%23386e3c%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

.form-group select:focus {
    transform: scale(1.02);
  box-shadow: 0 0 8px rgba(56, 110, 60, 0.2);
  border-color: #386e3c;
  outline: none;
  }



footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #386e3c;
  font-size: 14px;
}

@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 20px;
    background: #f4f6f9;
  }

  .login-wrapper {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
  }

  .login-left {
    display: none;
  }

  .login-right {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-right img {
    width: 150px;
    margin-bottom: 20px;
  }

  .login-right h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
  }

  .form-group,
  .login-btn {
    width: 100%;
    max-width: 100%;
  }

  .extra-links {
    font-size: 13px;
  }

  footer {
    position: relative;
    bottom: unset;
    margin-top: 20px;
    font-size: 12px;
  }
}

.form-group select {