@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #edf1f3;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #21222c;
  --muted: #777a84;
  --line: rgba(33, 34, 44, 0.07);
  --shadow-soft: 0 22px 50px rgba(24, 31, 53, 0.08);
  --shadow-card: 0 18px 38px rgba(20, 28, 45, 0.06);
  --accent-blue: #4b9dff;
  --accent-purple: #d39cff;
  --danger: #ff5f6d;
  --success: #0b6b0b;
  --radius-xl: 34px;
  --radius-pill: 999px;
  --right-panel-width: 360px;
  --panel-gap: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
  letter-spacing: inherit;
}

button,
input,
textarea,
select,
option {
  font: inherit;
  letter-spacing: inherit;
}

html,
body {
  min-height: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.012em;
}

body {
  background:
    radial-gradient(circle at top left, rgba(211, 156, 255, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(75, 157, 255, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
}

body.locked {
  visibility: hidden;
}

body.auth-required {
  overflow: hidden;
}

body.auth-required #appShell {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(8px);
}

body:not(.auth-required) #loginScreen {
  display: none;
}

#loginScreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
}

.loginCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  padding: 40px 32px;
}

.loginLogo {
  height: 44px;
  margin-bottom: 12px;
}

.loginCard .formRow {
  width: 100%;
  margin: 0;
}

.loginCard input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.loginCard input:focus {
  border-color: #333;
}

.loginCard .authSubmit {
  width: 100%;
  padding: 12px 20px;
  margin-top: 8px;
  justify-content: center;
  border-radius: 10px;
  background: #C8C3FA;
  color: #111;
}

.loginCard .authSubmit:hover {
  background: #b8b2f5;
}

.loginCard .authSubmit:hover {
  background: #0066dd;
}

.loginCard .status {
  width: 100%;
  text-align: center;
  font-size: 13px;
  min-height: 20px;
}

.logo {
  margin: 40px 50px 0;
  width: 146px;
  height: auto;
  flex: 0 0 auto;
  cursor: pointer;
}

#appShell {
  width: 90%;
  max-width: 1260px;
  flex: 1 1 auto;
  min-height: 0;
  margin: 140px auto 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

#topPanel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.heroRow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

#hello {
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}

.pillBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 10px 18px;
  border: 1px solid #d9e1e8;
  border-radius: 10px;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.18s ease;
}

.pillBtn:hover {
  background: #f2f2f2;
}

.pillBtn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.logoutBtn {
  padding-inline: 18px;
}

.logOutImg {
  width: 23px;
  height: 23px;
}

#toolbar {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  min-height: 52px;
}

#menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 44px;
}

.option {
  min-height: 0;
  min-width: 0;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(33, 34, 44, 0.78);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.option:hover {
  background: rgba(255, 255, 255, 0.52);
}

.option.active {
  background: var(--surface-strong);
  color: var(--text);
}

.option:disabled {
  cursor: default;
  opacity: 0.75;
}

#chapterViewBar {
  display: inline-flex;
  flex: 0 0 220px;
  width: 220px;
  min-width: 220px;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-right: calc(var(--right-panel-width) + var(--panel-gap));
}

.viewToggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 15px 18px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(33, 34, 44, 0.75);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.24s ease-out, color 0.24s ease-out, padding 0.52s cubic-bezier(0.16, 1, 0.3, 1), gap 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.viewToggle:hover {
  background: #f2f2f2;
}

.viewToggle.active {
  background: var(--surface-strong);
  color: var(--text);
}

.viewToggle > span:last-child {
  display: inline-block;
  overflow: hidden;
  max-width: 160px;
  opacity: 1;
  white-space: nowrap;
  transform: translateX(0);
  transition: max-width 0.52s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease-out, transform 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.viewToggle:not(.active) {
  padding: 0;
  gap: 0;
  background: transparent;
}

.viewToggle:not(.active):hover {
  background: transparent;
}

.viewToggle:not(.active) > span:last-child {
  max-width: 0;
  opacity: 0;
  transform: translateX(-3px);
}

.viewIcon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.viewIcon.future {
  background-image: url("../assets/teacher/future.svg");
}

.viewIcon.previous {
  background-image: url("../assets/teacher/previous.svg");
}

#main-group {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--right-panel-width);
  gap: var(--panel-gap);
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.panel {
  background: var(--surface);
  border: none;
  border-radius: 40px 40px 0 0;
  backdrop-filter: blur(18px);
}

#leftGroup {
  position: relative;
  overflow: visible;
  min-height: 0;
}

.table-wrapper {
  position: relative;
  min-height: 100%;
  height: 100%;
  padding-bottom: 86px;
}

.students-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.students-table col.col-arrows { width: 68px; }
.students-table col.col-photo { width: 108px; }
.students-table col.col-actions { width: 184px; }

.students-table thead th {
  padding: 50px 50px 30px;
  text-align: left;
  color: #808191;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.students-table thead th:first-child {
  padding-left: 50px;
}

.students-table thead th:last-child {
  padding-right: 50px;
}

.students-table tbody td {
  padding: 22px 50px;
  border-top: none;
  color: var(--text);
  vertical-align: middle;
  font-size: 13px;
  position: relative;
}

.students-table tbody td:first-child {
  padding-left: 50px;
}

.students-table tbody td:last-child {
  padding-right: 50px;
}

.students-table tbody tr {
  transition: background-color 0.08s ease-out;
  will-change: background-color;
}

.students-table tbody tr[data-clickable="true"] {
  cursor: pointer;
}

.students-table tbody tr[data-clickable="true"]:hover:not(.selected-row) {
  background: rgba(255, 255, 255, 0.45);
}

.students-table tbody tr.selected-row {
  background: #eef2f5;
}

.students-table tbody tr.selected-row:hover {
  background: #eef2f5;
}

.students-table tbody tr.edit-row td {
  background-color: #EEF2F5;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 50px;
  padding-right: 50px;
  vertical-align: middle;
  overflow: visible;
  position: relative;
  z-index: 10;
}

.students-table tbody tr.edit-row td:first-child {
  border-radius: 0;
}

.students-table tbody tr.edit-row td:last-child {
  border-radius: 0;
}

.create-spacer-cell {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.edit-row .inline-input {
  display: block;
  width: 100%;
  max-width: none;
  min-height: 42px;
  margin: 0;
  padding: 3px 10px;
  font-size: 13px;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid #2563eb;
  outline: none;
}

.edit-row .create-input-cell {
  padding-right: 26px !important;
}

.edit-row .create-begin-cell,
.edit-row .create-end-cell {
  padding-right: 22px !important;
}

.create-action-cell {
  text-align: left;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.chapterArrows {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 30px;
}

.arrowBtn {
  width: 30px;
  height: 18px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.arrowBtn + .arrowBtn {
  margin-top: 1px;
}

.arrowBtn img {
  width: 26px;
  height: 26px;
  display: block;
}

.arrowBtn:hover:not(:disabled) {
  transform: scale(1.08);
}

.arrowBtn:disabled {
  cursor: default;
  opacity: 0.3;
}

.chapterThumb {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  object-fit: cover;
  display: block;
}

.chapterThumbBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.chapterThumbBtn:hover .chapterThumb {
  opacity: 0.88;
}

.chapterThumbBtn:disabled {
  cursor: default;
}

.cellText {
  display: inline-block;
  max-width: 100%;
  min-height: 18px;
  line-height: 1.45;
  margin: 0;
  border-radius: 12px;
  outline: none;
  word-break: break-word;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.cellText.is-editable {
  cursor: text;
}

.cellText.is-editing {
  position: absolute;
  left: 50px;
  right: 10px;
  top: 50%;
  display: block;
  width: auto;
  max-width: none;
  min-height: 42px;
  padding: 10px 12px;
  margin: 0;
  box-sizing: border-box;
  border: 2px solid #2563eb;
  background: transparent;
  cursor: text;
  white-space: pre-wrap;
  transform: translateY(-50%);
  z-index: 3;
}

.cellText[data-field="beginning_date"].is-editing,
.cellText[data-field="ending_date"].is-editing {
  white-space: nowrap;
}

.cellText.is-editing:focus,
.inline-input:focus {
  border-color: #2563eb;
  background: transparent;
}

.inline-input {
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 2px solid #2563eb;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  outline: none;
  color: var(--text);
}

.readonlyTag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.delete-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.delete-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: url("../assets/teacher/junk.svg") center/contain no-repeat;
}

.delete-btn:hover {
  text-decoration: underline;
}

.emptyStateRow td {
  border-top: none;
  padding: 44px 36px;
  color: var(--muted);
  text-align: center;
}

.save-panel {
  position: absolute;
  left: -87px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
  display: flex;
  align-items: center;
  z-index: 30;
  padding: 0 20px;
  background-color: #EEF2F5;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  border-right: none;
  border-radius: 30px 0 0 30px;
  box-sizing: border-box;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.save-panel.visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.save-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}

.save-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.save-icon {
  position: relative;
  width: 9px;
  height: 20px;
  flex: 0 0 9px;
  background: transparent;
  overflow: visible;
}

.save-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: url("../assets/teacher/save.svg") center/contain no-repeat;
  pointer-events: none;
}

.addNew {
  position: absolute;
  right: 20px;
  bottom: 26px;
  min-width: 156px;
  min-height: 60px;
  padding: 18px 30px;
  border: none;
  border-radius: var(--radius-pill);
  background: #eef2f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.addNew:hover {
  background-color: #f2f2f2;
}

.addNew img {
  width: 18px;
  height: 18px;
}

#rightGroup {
  min-height: 0;
  padding: 30px 40px 40px;
  display: flex;
  flex-direction: column;
}

.resHeaderRow {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.resHeaderRow strong {
  font-size: 14px;
  font-weight: 600;
}

.resHeaderRow small {
  font-size: 12px;
  color: var(--muted);
  min-height: 20px;
}

.resBody {
  margin-top: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.resHelper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.resHelper p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(33, 34, 44, 0.82);
}

.resHelperVisual {
  margin-top: 10px;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.resHelperVisual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.resContent[hidden],
.resHelper[hidden] {
  display: none;
}

.resContent {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.resList {
  order: 1;
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.resRow {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
}

.resIcon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resIcon img {
  width: 40px;
  height: 40px;
  display: block;
}

.resNameBtn {
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resNameBtn:hover {
  text-decoration: underline;
}

.resTrashBtn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.resTrashBtn img {
  width: 18px;
  height: 18px;
  display: block;
}

.resTrashBtn:hover {
  background: rgba(255, 95, 109, 0.08);
}

.resEmpty {
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
}

.dropArea {
  order: 3;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dropLabel {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0.012em;
}

.dropZone {
  min-height: 176px;
  position: relative;
  border: none;
  border-radius: 40px;
  background: transparent;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.dropZone::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background-image: var(--drop-outline-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.dropZone.active {
  background: rgba(75, 157, 255, 0.06);
}

.resStatus {
  order: 2;
  min-height: 22px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  white-space: pre-wrap;
}

.resStatus.error {
  color: #b00020;
}

.resStatus.ok {
  color: var(--success);
}

.modalBack {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(237, 241, 243, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.modalBack.visible {
  display: flex;
}

.modal {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 34px;
  overflow: hidden;
}

.authModal {
  position: relative;
}

.authAccent {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 160px;
  background:
    radial-gradient(circle at top left, rgba(211, 156, 255, 0.34), transparent 52%),
    radial-gradient(circle at top right, rgba(75, 157, 255, 0.22), transparent 48%);
  pointer-events: none;
}

.authBody {
  position: relative;
  padding: 34px 34px 30px;
}

.authKicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(33, 34, 44, 0.8);
  font-size: 11px;
  font-weight: 600;
}

.authDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
}

.authTitle {
  margin-top: 18px;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.authLead {
  margin-top: 12px;
  color: rgba(33, 34, 44, 0.72);
  font-size: 13px;
  line-height: 1.6;
  max-width: 390px;
}

.formRow {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
}

.formRow label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(33, 34, 44, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.formRow input {
  min-height: 50px;
  border: 1px solid rgba(33, 34, 44, 0.08);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s ease;
}

.formRow input:focus {
  border-color: rgba(75, 157, 255, 0.5);
}

.status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  white-space: pre-wrap;
}

.status.error {
  color: #b00020;
}

.status.ok {
  color: var(--success);
}

.modalFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.modalHint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.authSubmit {
  min-width: 124px;
  background: #C8C3FA;
  color: #111;
  border-radius: 10px;
  padding: 10px 20px;
}

.authSubmit:hover {
  background: #b8b2f5;
}

.authClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(33, 34, 44, 0.55);
  font-size: 18px;
  cursor: pointer;
}

.authClose:hover {
  background: #ffffff;
  color: var(--text);
}

@media (max-width: 1120px) {
  #appShell {
    width: min(calc(100vw - 28px), 1260px);
    min-height: auto;
  }

  #main-group {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #chapterViewBar {
    margin-right: 0;
  }

  #rightGroup,
  #leftGroup {
    min-height: auto;
    border-radius: 30px;
  }

  body {
    overflow: auto;
    height: auto;
    min-height: 100vh;
  }
}

@media (max-width: 760px) {
  .logo {
    margin: 20px 18px 0;
    width: 132px;
  }

  #appShell {
    width: calc(100vw - 20px);
    margin-top: 28px;
    min-height: auto;
  }

  #toolbar {
    margin-top: 28px;
    min-height: 0;
  }

  #chapterViewBar {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
  }

  #hello {
    font-size: 30px;
  }

  .heroRow {
    gap: 14px;
  }

  .pillBtn,
  .option,
  .viewToggle {
    font-size: 14px;
  }

  .pillBtn,
  .viewToggle {
    padding: 12px 16px;
  }

  .students-table {
    table-layout: auto;
  }

  .students-table thead th,
  .students-table tbody td {
    padding-left: 12px;
    padding-right: 12px;
  }

  .students-table thead th:first-child,
  .students-table tbody td:first-child {
    padding-left: 16px;
  }

  .students-table thead th:last-child,
  .students-table tbody td:last-child {
    padding-right: 16px;
  }

  .authBody {
    padding: 28px 20px 22px;
  }

  .authTitle {
    font-size: 28px;
  }

  .modalFooter {
    flex-direction: column;
    align-items: stretch;
  }

  .authSubmit {
    width: 100%;
  }
}
