/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f8fa;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: white;
  border-bottom: 2px solid #d1d1d1;
}

.logo {
  height: 40px;
}

.menu-icon {
  font-size: 24px;
  background: #003366;
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
}

/* Tabs Section */
.tab-buttons {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #ccc;
  margin: 10px auto 20px;
  width: 90%;
  max-width: 400px;
}

.tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: white;
}

.tab.active {
  background-color: #003366;
}

.tab img {
  height: 24px;
}

/* Login Form */
.form-container {
  background-color: #ffffff;
  padding: 40px 20px;
  border: 1px solid #ccc;
  max-width: 400px;
  margin: 0 auto 30px;
  border-radius: 6px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.form-icon {
  width: 60px;
  margin: -10px auto 10px;
  display: block;
}

/* Form Input Fields */
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border: 1px solid #bbb;
  border-radius: 4px;
}

/* Password Field with Toggle Button */
.password-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.password-wrapper input {
  flex: 1;
}

.password-wrapper button {
  background: none;
  border: none;
  font-size: 14px;
  color: #00703c;
  cursor: pointer;
  padding-left: 10px;
}

/* Submit Button */
.login-btn {
  width: 100%;
  padding: 12px;
  background-color: #00703c;
  color: white;
  border: none;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background-color: #005c30;
}

.login-btn img.btn-icon {
  height: 18px;
  margin-right: 8px;
}
