@font-face {
  font-family: "Guaruja Grotesk";
  font-style: normal;
  font-weight: 400;
  src:
    local("Guaruja Grotesk"),
    url("../assets/font/GuarujaGroteskRegular2.woff") format("woff");
}

:root {
  --primary-color: #30b72d;
  --secondary-color: #ff9100;
  --accent-color: #67e840;
  --secondary-accet-color: #ea9b33;
  --alternative-color: #e7c588;
  --alternative-dark-color: #1a1917;
  --alternative-light-color: #8d8c8c;
  --alternative-lighter-color: #c6c6c6;
  --heading-text-color: #333;
  --text-color: #2a2a2a;
  --contrast-text-color: #fff;
  --background-color: #fff;
  --dark-background-color: #000;
  --heading-font: "Guaruja Grotesk", sans-serif;
  --heading-font-weight: 500;
  --heading-font-size: 16px;
  --text-font: "Roboto", sans-serif;
  --text-font-weight: 400;
  --text-font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: var(-heading-font-weight);
  color: var(--heading-text-color);
}

body {
  margin: 0;
  padding: 0;
  background: url("../assets/images/loginbackground.png") no-repeat center center fixed;
  background-size: cover;
  font-family: var(--text-font);
}

.custom-btn {
  border-radius: 2px;
  background: var(--primary-color);
  border: 2px solid transparent;
  color: var(--contrast-text-color);
  height: 48px;
}

.textcolor-light {
  color: var(--heading-text-color);
}

.roundedBox {
  border-radius: 40px;
  background: var(--background-color);
}

.custom-btn:hover {
  background: var(--background-color);
  border: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

#formPanel {
  min-width: 280px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

#showCursor {
  cursor: pointer;
}

.logo {
  max-width: 16em;
  margin-left: 3rem;
  margin-bottom: 3rem;
}

.forgottenpassword {
  text-align: center;
}

.forgottenpassword a {
  color: #495057;
  text-decoration: none;
}

.inp {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 280px;
  border-radius: 3px;
  overflow: hidden;
}

.inp .label {
  position: absolute;
  top: 18px;
  left: 6px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}

.inp input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 16px 6px 0 6px;
  height: 52px;
  font-weight: 400;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  color: var(--alternative-dark-color);
  transition: all 0.15s ease;
}

.inp input:hover {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.inp input:not(:-moz-placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:not(:-ms-input-placeholder) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:not(:placeholder-shown) + .label {
  color: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus {
  outline: none;
  box-shadow: inset 0 -2px 0 var(--primary-color);
}

.inp input:focus + .label {
  color: var(--primary-color);
  transform: translate3d(0, -12px, 0) scale(0.75);
}

.inp input:focus + .label + .focus-bg {
  transform: scaleX(1);
  transition: all 0.1s ease;
}

.inp input:disabled {
  background-color: var(--background-color);
  box-shadow: none;
}
