@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  list-style-type: none;
  color: inherit;
}

body {
  min-height: 100vh;
  background: linear-gradient(145deg, #f5f8ff, #eef2f9);
  color: #09101f;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
  width: min(95%, 1200px);
  margin: auto;
}

.alert-info {
  color: #0d6270;
  background-color: #d9f7fc;
  border: 1px solid #b4ecf4;
  padding: 14px 0;
}

section.auth-page .container {
  padding: 40px 0 60px;
}
section.auth-page .content {
  background-color: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  width: 100%;
  max-width: 980px;
  margin: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 22px 45px rgba(17, 34, 68, 0.08);
}
section.auth-page .auth-panel {
  background: linear-gradient(165deg, #09101f, #123f6d);
  color: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.auth-page .auth-panel .brand-logo {
  height: 36px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}
section.auth-page .auth-panel h1 {
  font-size: 30px;
  line-height: 1.25;
}
section.auth-page .auth-panel p {
  color: #d2dfef;
  line-height: 1.7;
}
section.auth-page .auth-panel ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
section.auth-page .auth-panel ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f7f9fd;
}
section.auth-page .auth-panel ul li span {
  color: #7fd4ff;
  font-size: 20px;
}
section.auth-page .auth-form {
  padding: 44px;
}
section.auth-page .auth-form .logo {
  margin-bottom: 16px;
}
section.auth-page .auth-form .logo h2 {
  color: #1f2b42;
  font-size: 28px;
  margin-bottom: 6px;
}
section.auth-page .auth-form .logo p {
  color: #5f6c84;
  font-size: 14px;
  margin-bottom: 8px;
}
section.auth-page .auth-form .error {
  color: #7c2f2f;
  background-color: #fcdede;
  border: 1px solid #fad1d1;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 1rem;
}
section.auth-page .auth-form .error p {
  font-weight: 500;
  color: #7c2f2f;
  margin-bottom: 0;
}
section.auth-page .auth-form .input {
  margin-bottom: 16px;
  width: 100%;
}
section.auth-page .auth-form .input label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #34445f;
  font-weight: 600;
}
section.auth-page .auth-form .input input {
  border: 1px solid #c8d3e0;
  border-radius: 8px;
  padding: 14px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
section.auth-page .auth-form .input input:focus {
  border-color: #2e5bea;
  box-shadow: 0 0 0 4px rgba(46, 91, 234, 0.12);
}
section.auth-page .auth-form input[type=checkbox] {
  height: 15px;
  width: 15px;
}
section.auth-page .auth-form button {
  background-color: #f2132b;
  color: #ffffff;
  font-size: 14px;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  margin: 8px 0 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
section.auth-page .auth-form button:hover {
  background: #d80f25;
  transform: translateY(-1px);
}
section.auth-page .auth-form .checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}
section.auth-page .auth-form .checkbox label {
  color: #5f6c84;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
section.auth-page .auth-form .checkbox a {
  color: #2e5bea;
  font-size: 14px;
}
section.auth-page .auth-form .checkbox a:hover {
  text-decoration: underline;
}
section.auth-page .auth-form .footer {
  display: grid;
  place-content: center;
}
section.auth-page .auth-form .footer span {
  font-weight: 400;
  color: #5f6c84;
  font-size: 14px;
}
section.auth-page .auth-form .footer span a {
  color: #2e5bea;
  font-weight: 600;
}
section.auth-page .auth-form .footer span a:hover {
  text-decoration: underline;
}
