@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

:root {
  --Secondary: #444444;
  --AlphaSecondary: #44444467;
  --Primary: #ed2124;
  --AlphaPrimary: #ed212457;
  --PureWhite: #fff;
  --PureBlack: #000;
  --AlphaBlack: #141414b0;
  --AlphaGrey: #8e8e8e67;
  --Grey: #8e8e8e;
  --Background: #8e8e8e0c;
  --Danger: #e62727;
  --AlphaDanger: #e6272764;
  --Warning: #ecbd00;
  --AlphaWarning: #ffcc0050;
  --Success: #1a8d1a;
  --AlphaSuccess: #1a8d1a67;
  --Pink: #e64072;
  --AlphaPink: #e6407267;
  --Radius: 0.6rem;
  --HalfRadius: 0.3rem;
  --BoxShadowPrimary: 2px 2px 4px #f1bd20;
  --BoxShadowGrey: 2px 2px 4px #eaeaea;
}

body {
  background-color: var(--Background);
}
body .frame {
  padding: 1rem;
  width: 80%;
}
body .frame.open {
  width: 92% !important;
}

/* width */
::-webkit-scrollbar {
  width: 0.4rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--AlphaPrimary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--Primary);
}

.inputfield {
  display: flex;
  flex-direction: column;
  position: relative;
}
.inputfield__field {
  width: 100%;
  outline: none;
  border: 1px solid var(--Grey);
  border-radius: var(--HalfRadius);
  padding: 0.5rem 0.4rem;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--AlphaBlack);
  resize: vertical;
}
.inputfield__field::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--Grey);
}
.inputfield__field:-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--Grey);
}
.inputfield__field::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--Grey);
}
.inputfield input:focus {
  border: 1px solid var(--Primary) !important;
}
.inputfield__label {
  text-transform: uppercase !important;
  color: var(--AlphaBlack) !important;
  font-size: 0.7rem !important;
  margin-top: 0.5rem !important;
}
.inputfield__show {
  position: absolute;
  right: 0.5rem;
  top: 55%;
  color: var(--AlphaBlack);
  cursor: pointer;
}

.custombutton {
  width: 100%;
  outline: none !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--HalfRadius);
  background-color: var(--Primary);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0.8rem;
  margin-top: 1rem;
  color: var(--PureWhite);
}
.custombutton__text {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.custombutton:active {
  opacity: 0.8;
}

.selectfield {
  display: flex;
  flex-direction: column;
}
.selectfield__field {
  outline: none;
  border: 1px solid var(--Grey);
  border-radius: var(--HalfRadius);
  padding: 0.5rem 0.4rem;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--AlphaBlack);
}
.selectfield__field::-moz-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--AlphaGrey);
}
.selectfield__field:-ms-input-placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--AlphaGrey);
}
.selectfield__field::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--AlphaGrey);
}
.selectfield__field:focus {
  border: 1px solid var(--Primary) !important;
}
.selectfield__label {
  text-transform: uppercase !important;
  color: var(--AlphaBlack) !important;
  font-size: 0.7rem !important;
  margin-top: 0.5rem !important;
}

.filefield {
  position: relative;
  width: 100%;
  padding: 2rem 0.3rem 0.3rem 0.3rem;
  border: 0.02rem dashed var(--Grey);
  border-radius: var(--HalfRadius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.3rem;
}
.filefield__field {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
}
.filefield__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.3rem;
  height: inherit;
}
.filefield__body i {
  font-size: 1.3rem;
  color: var(--Primary);
}
.filefield__body span {
  font-size: 0.8rem;
  font-weight: 400;
}
.filefield__images {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
}
.filefield__images img {
  width: 5rem;
  height: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--HalfRadius);
  margin: 0.3rem 0 0 0;
}
.filefield__upload {
  outline: none;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--HalfRadius);
  position: relative;
  z-index: 3;
}
.filefield__upload:active {
  opacity: 0.6;
}

.fa-clipboard {
  font-size: 1rem;
  margin-left: 0.3rem;
  color: var(--Primary);
  cursor: pointer;
}
.fa-clipboard:active {
  color: var(--AlphaPrimary);
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(--Primary);
}
.login-wrapper {
  background-color: var(--PureWhite);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50vw;
  border-radius: var(--Radius);
  overflow: hidden;
}
.login-wrapper--left {
  position: relative;
  min-height: 70vh;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 0.5rem;
}
.login-wrapper--left__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.login-wrapper--left__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--AlphaBlack);
  z-index: 1;
}
.login-wrapper--left__logo {
  position: relative;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--Secondary);
  padding: 0.5rem;
  border-radius: 0.8rem;
}
.login-wrapper--left__title {
  position: relative;
  z-index: 2;
  color: var(--PureWhite);
  letter-spacing: 0.2rem;
}
.login-wrapper--left__caption {
  position: relative;
  z-index: 2;
  color: var(--PureWhite);
  font-weight: 300;
  font-size: 0.9rem;
}
.login-wrapper--right {
  min-height: 70vh;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.3rem;
  padding: 4rem;
}
.login-wrapper--right__title {
  font-weight: 600;
  color: var(--AlphaBlack);
}
.login-wrapper--right__title-highlight {
  color: var(--Primary) !important;
}
.login-wrapper--right__caption {
  color: var(--AlphaBlack);
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

@media screen and (max-width: 900px) {
  .login {
    height: auto !important;
    padding: 1rem 0 !important;
  }
  .login-wrapper {
    width: 90vw;
    flex-direction: column;
  }
  .login-wrapper--left, .login-wrapper--right {
    width: 100%;
  }
  .login-wrapper--left {
    min-height: 30vh;
  }
}/*# sourceMappingURL=style.css.map */