body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f3f4f6;
  margin: 0;
  font-family: Arial, sans-serif;
}
main {
  width: 600px;
}
.form-container {
  width: 100%;
  max-width: 600px;
  background: var(--post-bg);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 24px;
}
.check-bx {
  display: flex;
  align-items: center !important;
}
.form-checkbox {
  width: 20px !important;
}
.remember-label {
  margin: 0px !important;
}
.remember-label {
  font-size: 15px !important;
}
.icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.icon img {
  width: 64px;
  height: 64px;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--h1);
  margin-bottom: 16px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4b5563;
}

.form-input {
  width: 100%;
  height: 55px;
  padding-left: 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: var(--input-txt-clr) !important;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}
.form-input::placeholder {
  padding: 0px;
}
.form-input:focus {
  border-color: #0378a4;
}

.password-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.password-toggle img {
  width: 20px;
  height: 20px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-checkbox {
  margin-right: 8px;
}

.remember-label {
  font-size: 14px;
  color: #4b5563;
}

.form-link {
  font-size: 14px;
  color: #0378a4;
  text-decoration: none;
}

.form-link:hover {
  text-decoration: underline;
}

.form-button {
  width: 100%;
  background: #0378a4;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.sign-up {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.signup-lst-btn {
  cursor: pointer;
  color: #0378a4;
}
.signup-lst-btn:hover {
  text-decoration: underline;
}

.error-message {
  background-color: #fee2e2;
  border: 1px solid #ef4444;
  color: #dc2626;
  padding: 8px 12px;
  border-radius: 4px;
  margin-top: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rembr-fild-container {
  display: flex;
  gap: 10px;
}

input[type="checkbox"].rembr-fild-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--input);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

input[type="checkbox"].rembr-fild-checkbox:checked {
  background-color: #0378a4;
  border-color: #0378a4;
}

input[type="checkbox"].rembr-fild-checkbox:checked::before {
  content: "✓";
  font-size: 13px;
  color: white;
  text-align: center;
}

label.rembr-fild-label {
  font-size: 16px;
  color: var(--h1);
  cursor: pointer;
}
