@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tektur:wght@400..900&display=swap");

.header {
  padding-top: 2em;
}

.header img {
  width: 24rem;
}

.logo-container img {
  width: 80%;
  height: auto;
}

.main-container {
  height: 90vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5em;
}

.logo-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: end;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

.login-container {
  width: 100%;
  max-width: 30%;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 30px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #48c9b0;
  box-shadow: 0 0 0 2px rgba(72, 201, 176, 0.2);
}

input::placeholder {
  color: #c1c1c1;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input[type="password"] {
  padding-right: 40px;
}

.password-toggle-icon {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: #888;
  user-select: none;
}

.options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember-me label {
  margin-bottom: 0;
  font-weight: normal;
  color: #555;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.forgot-password {
  color: #555;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(193deg, #60c5c3, #54ccaf, #14c584);
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.disclaimer {
  font-size: 12px;
  color: #999;
  text-align: left;
  margin-top: 25px;
  line-height: 1.5;
}

.error-message {
  color: #e74c3c;
  background-color: #fbeae5;
  border: 1px solid #e74c3c;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .logo-container {
    display: none;
  }

  .login-container {
    width: 100%;
    max-width: 85%;
    margin: auto;
  }
}
