/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Container */
.container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Left Panel */
.left-panel {
  flex: 1;
  background-color: #2b2e83; /* Dark blue background like in Figma */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 40px;
}

.left-panel img {
  width: 70%;
  max-width: 380px;
  margin-bottom: 20px;
}

.left-panel h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

/* Right Panel */
.right-panel {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-box {
  max-width: 400px;
  width: 100%;
}

.logo img {
  width: 60px;
  margin-bottom: 15px;
}

h1 {
  font-size: 1.4rem;
  color: #1d1d1d;
}

.description {
  font-size: 0.9rem;
  color: #555;
  margin: 10px 0 20px;
  line-height: 1.5;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1d1d1d;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 5px;
}

input[type="email"],
input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
}

.remember {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

button {
  background-color: #2b2e83;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #1f2266;
}

.forgot {
  margin-top: 15px;
  font-size: 0.85rem;
}

.forgot a {
  color: #2b2e83;
  text-decoration: none;
}

.forgot a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    flex: none;
    width: 100%;
    height: auto;
  }

  .left-panel {
    padding: 30px 20px;
  }
}

.login-btn {
  display: inline-block;
  text-align: center;
  background-color: #2b2e83;
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.login-btn:hover {
  background-color: #1f2266;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fc;
}

.container {
  display: flex;
  width: 900px;
  height: 550px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.left-side {
  background-color: #1f1b4e;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  padding: 30px;
}

.left-side img {
  width: 250px;
  margin-bottom: 20px;
}

.left-side h2 {
  font-size: 1.8rem;
  background-color: #2b2670;
  padding: 10px 25px;
  border-radius: 10px;
  color: #fff;
}

.right-side {
  background-color: #ffffff;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 80%;
  max-width: 320px;
}

.login-box h2 {
  color: #000;
  margin-bottom: 25px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #333;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
  outline: none;
  font-size: 0.95rem;
}

.remember {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.remember input {
  margin-right: 8px;
}

.login-btn {
  width: 100%;
  padding: 10px;
  background-color: #2b2670;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background-color: #1f1b4e;
}

.register-link {
  text-align: right;
  margin-top: 10px;
}

.register-link a {
  color: #2b2670;
  text-decoration: none;
  font-size: 0.85rem;
}

.register-link a:hover {
  text-decoration: underline;
}




