p + form,
p + input {
  margin-top: 1rem;
}
h2 + p,
p + p {
  margin-top: .5rem;
}

p, 
a,
input,
button {
  font: normal normal 16px/1.5em 'Nunito';
}

h2 {
  font: normal bold 20px/1.5em 'Nunito';  
  color: #000000;
}

h2 span {
  display: block;
  line-height: 1em;
  margin-bottom: 1rem;
}

h2 span,
p {
  font-size: 14px;
  font-weight: 200;
  color: #626262;
}

a.small {
  text-decoration: none;
  font-size: 12px;
  color: var(--tt-theme-color, #000000);
}

a.small:focus,
a.small:hover {
  text-decoration: underline;
  outline: none;
}

body {
  position: relative;
  background: var(--tt-theme-color);
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: var(--tt-pattern);
  background-size: 100px;
  opacity: .05;
}

main {
  display: flex;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  padding: 1rem;
}

.wrapper {
  margin: auto;
  width: 100%;
  max-width: 300px;
}

.box {
  background-color: rgba(255, 255, 255, .9);
  border-radius: 15px;
  padding: 1rem;
}

img.logo {
  display: block;
  margin: 0 auto;
  width: 100px;
  min-height: 100px;
  object-fit: contain;
  filter: invert(.3);
}

.box svg {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}

.box svg path {
  fill: var(--tt-theme-color);
}

.notification {
  margin: 0 0 1rem;
  border-radius: 5px;
  padding: .5rem;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
}

.notification.error:before,
.notification.success:before {
  content: '';
  background-color: transparent;
}

.notification:empty {
  padding: 0;
}

.notification.error {
  background-color: #A11826;
  color: #ffffff
}

.notification.success {
  background-color: #27B376;
  color: #ffffff
}

label {
  color: #ffffff;
  font-size: 14px;
}

input {
  background-color: transparent;
  border: 1px solid rgba(31, 31, 31, .4);
  border-radius: 5px;
  width: 100%;
  height: 45px;
  padding: .5rem;
  color: #1f1f1f;
  font-size: 14px;
}

input::placeholder {
  color: rgba(31, 31, 31, .6);
}

input:focus {
  background-color: transparent;
  border-color: inherit;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  color: #1f1f1f;
}

.button,
[type="submit"] {
  display: block;
  background-color: rgba(155, 159, 165, 0.4);
  border: none;
  border-radius: 3px;
  background-color: var(--tt-theme-color);
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  color: #ffffff;
  transition: all .4s ease-in;
}

.button:hover,
.button:focus,
[type="submit"]:hover,
[type="submit"]:focus {
  background-color: rgba(70, 70, 70, 0.8);
  color: #ffffff;
}

/****************************************
* Password requirement
****************************************/

.password-wrapper {
  position: relative;
}

.password-requirement {
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 1;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, .1);
  border-radius: 5px;
  background-color: #ffffff;
  padding: 1rem;
}

.password-requirement .message-wrapper {
  margin-bottom: 1rem;
}

.password-requirement .req {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.password-requirement .req + .req {
  margin-top: .5rem;
}

.password-requirement p {
  margin: 0;
}

.password-requirement .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c02d00;
  border-radius: 50%;
  background-color: transparent;
  width: 20px;
  height: 20px;
  visibility: visible;
}

.password-requirement .checkbox svg,
.password-requirement .checkbox svg path {
  width: 10px;
  height: 10px;
  fill: #c02d00;
}

.password-requirement .checkbox.on {
  border-color: #00c066;
}

.password-requirement .checkbox.on svg,
.password-requirement .checkbox.on svg path {
  fill: #00c066;
}