/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
}

/* Login container */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.login-box {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-box h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}

/* Inputs */
.login-box input,
.login-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background: #fff;
  color: #000;
}

/* Button */
.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background-color: #333;
}

/* Responsive */
@media screen and (max-width: 480px) {
  .login-box {
    padding: 30px 20px;
  }

  .login-box h1 {
    font-size: 24px;
  }
}

.login-wrapper {
  display: flex;
  height: 100vh;
  width: 100%;
}

.login-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
}

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

.login-form-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.login-box {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  background: white;
}

.login-box input,
.login-box select,
.login-box button {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-left {
  flex: 1;
  background-image: url("assets/sista-sista-home.jpeg");
  background-size: cover;
  background-position: center;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}
