@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #65a242;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: inherit;
}

body {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  position: relative;
  background: #f3f3f3;
}

.wrapper {
  padding: 0 50px;
}
@media (width <= 920px) {
  .wrapper {
    padding: 0 20px;
  }
}

/* checkbox settings 👇 */
.ui-checkbox {
  --primary-color: var(--accent);
  --secondary-color: #fff;
  --primary-hover-color: var(--primary-color);
  /* checkbox */
  --checkbox-diameter: 16px;
  --checkbox-border-radius: 4px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  /* checkmark */
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

/* actions */
.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -45%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -45%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -45%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.navbar {
  width: 100%;
  min-height: 80px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 22;
  box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.0705882353);
}
.navbar .logo img {
  width: 70px;
}
.navbar .nav-links {
  flex-grow: 1;
}
.navbar .nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar .nav-links ul li {
  cursor: pointer;
  padding: 0 6px;
  transition: all 150ms;
}
.navbar .nav-links ul li:hover {
  color: var(--accent);
}
.navbar .nav-links ul li:nth-last-of-type(1) {
  margin-left: auto;
}

.main-content {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
  flex-direction: column;
}

.white-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.0705882353);
}

.heading {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  position: relative;
  display: flex;
  gap: 10px;
}
.heading::before {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: var(--accent);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.heading h1 {
  font-size: 20px;
  font-weight: 600;
}
.custom-table {
  margin-top: 30px;
}
.custom-table .table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-table .table-entries {
  display: flex;
  gap: 8px;
  align-items: center;
}
.custom-table .table-entries select {
  border: none;
  outline: none;
  appearance: none;
  width: 60px;
  height: 30px;
  border: 1px solid #e1e1e1;
  color: #495057;
  border-radius: 4px;
  font-size: 13px;
  padding: 0 4px;
  transition: all 200ms;
}
.custom-table .table-entries select:focus {
  border-color: var(--accent);
}
.custom-table .table-search {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.custom-table .table-search input {
  outline: none;
  max-width: 150px;
  border: 1px solid #e1e1e1;
  color: #495057;
  border-radius: 4px;
  font-size: 13px;
  padding: 10px 15px;
  transition: all 200ms;
}
.custom-table .table-search input:focus {
  border-color: var(--accent);
}
.custom-table .table-actions {
  opacity: 0;
  visibility: hidden;
  transition: all 200ms;
}
.custom-table .table-actions.active {
  opacity: 100;
  visibility: visible;
}
.custom-table .table-actions button {
  outline: none;
  width: 46px;
  height: 36px;
  background-color: transparent;
  border: 1px solid #dee2e6;
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms;
}
.custom-table .table-actions button#delete {
  border-color: red;
}
.custom-table .table-actions button#delete:hover {
  background-color: rgba(255, 0, 0, 0.1);
}
.custom-table .table-actions button#delete:active {
  background-color: rgba(255, 0, 0, 0.2);
}
.custom-table .table-actions button:hover {
  background-color: #f1f5f9;
}
.custom-table .table-actions button:active {
  background-color: #dee2e6;
}
.custom-table .table-actions button img {
  pointer-events: none;
  width: 20px;
}
.custom-table table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 30px;
  font-size: 15px;
}
.custom-table table th {
  font-size: 11px;
  color: #737373;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  padding: 0 14px;
  padding-bottom: 20px;
}
.custom-table table tbody tr {
  transition: all 200ms;
}
.custom-table table tbody tr:nth-child(2n) {
  background: #f5f5f5;
}
.custom-table table tbody tr:hover {
  background-color: #ececec;
}
.custom-table table td {
  height: 65px;
  padding: 0 14px;
}
.custom-table table .checkbox {
  width: 50px;
}
.custom-table .name {
  display: flex;
  align-items: center;
  gap: 16px;
}
.custom-table .name .size {
  color: black;
  font-size: 12px;
  margin-top: 6px;
  font-style: italic;
}
.custom-table .name .icon {
  display: block;
  width: 32px;
  height: 32px;
  background-color: #d7d7d7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-table .name .icon.folder {
  background: var(--accent);
}
.custom-table .name .icon img {
  width: 20px;
}
.custom-table .label span {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 5px;
}
.custom-table .label.yellow span {
  color: #ffb300;
  background-color: rgba(255, 197, 66, 0.125);
}
.custom-table .label.blue span {
  color: #0062ff;
  background-color: rgba(0, 98, 255, 0.125);
}
.custom-table .label.green span {
  color: #28a745;
  background-color: rgba(61, 213, 152, 0.125);
}
.custom-table .avatar-group {
  display: flex;
  align-content: center;
}
.custom-table .avatar-group .avatar {
  position: relative;
  transition: all 200ms;
}
.custom-table .avatar-group .avatar:not(:first-child) {
  margin-left: -12px;
}
.custom-table .avatar-group .avatar .member-name {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
  background-color: #25282b;
  border-radius: 4px;
  color: white;
  padding: 6px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms;
}
.custom-table .avatar-group .avatar .member-name::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid;
  border-color: #25282b transparent transparent;
}
.custom-table .avatar-group .avatar:hover {
  z-index: 1;
}
.custom-table .avatar-group .avatar:hover .member-name {
  opacity: 100;
  visibility: visible;
}
.custom-table .avatar-group .avatar img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
}
.custom-table .avatar-group .avatar.last {
  width: 28px;
  height: 28px;
  color: white;
  font-size: 12px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown {
  position: relative;
}
.dropdown .dropdown-toggle {
  width: 35px;
  height: 35px;
  outline: none;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 200ms;
}
.dropdown .dropdown-toggle:focus {
  box-shadow: rgba(0, 98, 255, 0.368627451) 0px 0px 0px 3px;
}
.dropdown .dropdown-toggle img {
  width: 20px;
  pointer-events: none;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: calc(100% - 35px);
  width: 220px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.15);
  padding: 8px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}
.dropdown .dropdown-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.dropdown.active .dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.dropdown ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.dropdown ul li {
  border-radius: 4px;
  cursor: pointer;
  transition: all 150ms;
  font-size: 14px;
  padding: 8px 12px;
}
.dropdown ul li:hover {
  background-color: var(--accent);
  color: white;
}

.dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.table-pagination {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-pagination .pagination-btns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.table-pagination .pagination-btns button {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  background-color: white;
  border: 1px solid #dee2e6;
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms;
}
.table-pagination .pagination-btns button img {
  width: 14px;
}
.table-pagination .pagination-btns button:hover {
  background-color: #f1f5f9;
}
.table-pagination .pagination-btns button:active {
  background-color: #dee2e6;
}
.table-pagination .pagination-btns button.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}

.mobile-table {
  display: none;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.mobile-table .item {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 10px 8px;
  position: relative;
  text-align: center;
}
.mobile-table .name {
  gap: 8px;
  flex-direction: column;
}
.mobile-table .modified {
  font-size: 13px;
  color: #737373;
  margin-top: 3px;
}
.mobile-table .mobile-dropdown {
  position: absolute;
  top: 6px;
  right: 6px;
}
.mobile-table .mobile-dropdown .dropdown-toggle {
  width: 26px;
  height: 26px;
}
.mobile-table .mobile-dropdown .dropdown-menu {
  width: 150px;
}

@media (width <= 800px) {
  .navbar {
    min-height: 70px;
    justify-content: space-between;
    gap: 20px;
  }
  .navbar .logo img {
    width: 50px;
  }
  .navbar .nav-links {
    flex-grow: 0;
  }
  .navbar .nav-links ul {
    gap: 10px;
  }
  .navbar .nav-links ul li {
    font-size: 16px;
  }
  .navbar .nav-links ul li:nth-last-of-type(1) {
    margin-left: 0;
  }
  .heading {
    padding-bottom: 10px;
  }
  .heading h1 {
    font-size: 20px;
    font-weight: 600;
  }
  .main-content {
    padding-top: 90px;
  }
  .table-wrapper {
    overflow: auto;
  }
  .custom-table {
    margin-top: 26px;
  }
  .custom-table .table-header {
    align-items: flex-start;
  }
  .custom-table .table-entries {
    display: none;
  }
  .custom-table .table-search label {
    display: block;
    margin-bottom: 4px;
  }
  .custom-table .table-actions {
    display: none;
  }
  .table-pagination {
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }
  .table-pagination .pagination-btns button {
    width: 32px;
    height: 32px;
  }
  .mobile-table {
    display: grid;
  }
}
footer {
  margin-top: auto;
  padding: 20px 0;
  text-align: center;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.btn {
  color: #ffffff;
  background-color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 200ms;
}
.btn:hover {
  color: var(--accent);
  background: none;
}
.btn:disabled {
  opacity: 0.5;
}
.btn:disabled:hover {
  color: white;
  background: var(--accent);
}

.btn-secondary {
  background-color: gray;
  border: 1px solid gray;
}
.btn-secondary:hover {
  color: gray;
  background: none;
}

.horizontal-form .form-group {
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-bottom: 10px;
  align-items: center;
  gap: 20px;
}
.horizontal-form .form-group label {
  text-align: right;
}
.horizontal-form .form-group input, .horizontal-form .form-group select {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  width: 100%;
  padding: 10px 15px;
}
.horizontal-form .form-group .check {
  text-align: left;
}
.horizontal-form .form-group .check input {
  width: auto;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding-top: 30px;
}

.text-end {
  text-align: right;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.m-10 {
  margin: 10px;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.m-15 {
  margin: 15px;
}

.p-15 {
  padding: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.m-20 {
  margin: 20px;
}

.p-20 {
  padding: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.m-25 {
  margin: 25px;
}

.p-25 {
  padding: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.m-30 {
  margin: 30px;
}

.p-30 {
  padding: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.m-35 {
  margin: 35px;
}

.p-35 {
  padding: 35px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.m-40 {
  margin: 40px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.m-45 {
  margin: 45px;
}

.p-45 {
  padding: 45px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.m-50 {
  margin: 50px;
}

.p-50 {
  padding: 50px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mb-55 {
  margin-bottom: 55px;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.m-55 {
  margin: 55px;
}

.p-55 {
  padding: 55px;
}

.pt-55 {
  padding-top: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.m-60 {
  margin: 60px;
}

.p-60 {
  padding: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.m-65 {
  margin: 65px;
}

.p-65 {
  padding: 65px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.m-70 {
  margin: 70px;
}

.p-70 {
  padding: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.m-75 {
  margin: 75px;
}

.p-75 {
  padding: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.m-80 {
  margin: 80px;
}

.p-80 {
  padding: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mb-85 {
  margin-bottom: 85px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.m-85 {
  margin: 85px;
}

.p-85 {
  padding: 85px;
}

.pt-85 {
  padding-top: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.m-90 {
  margin: 90px;
}

.p-90 {
  padding: 90px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mb-95 {
  margin-bottom: 95px;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.m-95 {
  margin: 95px;
}

.p-95 {
  padding: 95px;
}

.pt-95 {
  padding-top: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.m-100 {
  margin: 100px;
}

.p-100 {
  padding: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.fz-8 {
  font-size: 8px;
}

.fz-9 {
  font-size: 9px;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

.fz-37 {
  font-size: 37px;
}

.fz-38 {
  font-size: 38px;
}

.fz-39 {
  font-size: 39px;
}

.fz-40 {
  font-size: 40px;
}

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-wrapper .body {
  max-width: 800px;
  margin: auto;
  flex-basis: 100%;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.168627451);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 20px;
}
.auth-wrapper .left {
  background: url("/assets/images/auth-bg.jpg") no-repeat;
  background-size: cover;
  margin: -20px;
  margin-right: 0;
}
.auth-wrapper .right {
  padding-top: 50px;
  padding-bottom: 50px;
}
.auth-wrapper input, .auth-wrapper button {
  border-radius: 4px;
}

.error {
  color: red;
  margin-top: -10px;
  margin-bottom: 10px;
}

.ms-auto {
  margin-left: auto;
}

/*# sourceMappingURL=style.css.map */
