* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: url("/assets/info-sec-bg.png") center center / cover no-repeat
    fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: "Segoe UI Variable", "Noto Sans Arabic", "Tahoma", "Arial";
  font-weight: 500;
}
.card {
  width: 100%;
  max-width: 520px;
  background: #faf6f2;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #5c3f32;
}
.titleContainer {
  display: flex;
  justify-content: center;
  margin: 0 0 1.5rem 0;
}
h1 {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
h2 {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  text-align: center;
}
.note {
  margin: 6px 0 16px 0;
  font-size: 0.95rem;
  color: #8b0000;
  background: #ffe9e9;
  border: 1px solid #ffb3b3;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}
label {
  display: block;
  margin: 10px 0 6px;
}
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  outline: none;
  font-size: 1rem;
  background: #fff;
}
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #888;
}
.error {
  color: #b00020;
  font-size: 0.9rem;
  margin-top: 6px;
  display: none;
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 12px;
}
.checkbox input {
  margin-top: 3px;
}
.actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
button {
  padding: 12px 16px;
  border: none;
  border-radius: 40px;
  background: #311f19;
  color: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: "Segoe UI Variable", "Noto Sans Arabic", "Tahoma", "Arial";
  font-weight: 500;
}
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.status {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  display: none;
}
.status.ok {
  background: #e8fff1;
  border: 1px solid #21a358;
  color: #135c33;
}
.status.err {
  background: #ffecec;
  border: 1px solid #e02424;
  color: #7a0f0f;
}
.mailContainer {
  text-align: left;
  margin-top: 20px;
}
.link {
  color: #8b5c43;
  font-weight: 500;
  /* text-decoration: none; */
}
