/* Reset and base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loginBox {
  width: 100%;
  height: 100vh;
  background: url("bg.png") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Login card styling */
.login-card {
  background-color: #111;
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo and tagline */
.logo img {
  width: 60px;
  margin-bottom: 10px;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  color: #00cc66;
}

.tagline {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

/* Headings and links */
h2 {
  font-size: 20px;
  margin: 0;
}

.highlight {
  color: #00cc66;
}

a {
  color: #00cc66;
  text-decoration: none;
  font-size: 14px;
}

/* Input fields */
input {
  padding: 10px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: white;
  font-size: 14px;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 0px;
}

.password-wrapper input {

    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background-color: #222;
    color: white;
    font-size: 14px;
}

/* Forgot link aligned to right */
.forgot {

    margin-left: 10px;
    font-size: 12px;
    color: #ccc;
    cursor: pointer;
    white-space: nowrap;
}
 

/* Login button */
button {

    background-color: #00cc66;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00b359;
}

/* Divider */
.divider {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin: 10px 0;
}

/* Social login icons */
.social-icons {

    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Chatbot container */
#chatbot {
  display: none;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: none; /* remove green background so Landbot shows its own design */
}

/* Chatbot iframe */
#botFrame {
  width: 100%;
  height: 100%;
  border: none;
}

/* Logout button inside chatbot */
.logout-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #00cc66;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
