/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6f9;
}

/* LAYOUT */
.login-container {
  display: flex;
  height: 100vh;
}

/* LEFT SIDE */
.login-left {
  width: 40%;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 80px;
}

.login-left h1 {
  margin: 0;
}

.login-left p {
  font-size: 13px;
  color: #ccc;
}

/* ROLE BUTTONS */
.roles {
  margin-top: 20px;
}

.role-btn {
  text-decoration: none;
  color: white;
  padding: 8px 15px;
  border: 1px solid #555;
  border-radius: 20px;
  margin: 5px;
  font-size: 12px;
  transition: 0.3s;
}

.role-btn:hover {
  background: #444;
}

.role-btn.active {
  background: #3498db;
  border: none;
}

/* RIGHT SIDE */
.login-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: white;
}

.login-right h2 {
  margin-bottom: 5px;
}

.subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

/* INPUT */
.input-group {
  margin-bottom: 15px;
}

.input-box {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
}

.input-box i {
  margin-right: 10px;
  color: #666;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

/* OPTIONS */
.options {
  font-size: 12px;
  margin-bottom: 15px;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
  margin-bottom: 10px;
}

/* BUTTON */
.login-btn {
  width: 100%;
  padding: 12px;
  background: #2c2c2c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #444;
}