* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  background: url('../assets/brand/background-login-2.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  display: flex;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.login-left {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 40px;
  background: linear-gradient(to top right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
}

.login-left .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 1;
}

.login-left .text-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.login-left .logo {
  max-width: 180px;
  margin-bottom: 5px;
}

.login-left h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.login-left h2 {
  font-size: 16px;
  font-weight: 400;
  color: #ddd;
}

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

.login-right h2 {
  margin-bottom: 30px;
  font-size: 20px;
  color: #333;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #1f4f4e;
  color: white;
  border: none;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #00120f;
}

.remember {
  text-align: right;
  font-size: 13px;
  margin-bottom: 20px;
}

.error {
  background-color: #ffe0e0;
  color: #a10000;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
}
