/**************************************/
/*              GLOBALS               */
/**************************************/

html {
    height: 100%;
    scroll-behavior: smooth;
    background: #111;
    color: #fff;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    background: #111111;
    width: 100%;
    position: relative;
}

#wrapper {
    position: relative;
    overflow-x: hidden;
    min-height: 100%;
    min-width: 20rem;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a {
    color: #f03a1e;
    text-decoration: none;
    border-bottom: 0.1em solid rgba(240, 58, 30, 0);
}

::-moz-selection {
	background: #f7921e; /* Safari */
    color: #000;
}

::selection {
	background: #f7921e; /* Safari */
    color: #000;
}

::-moz-selection {
	background: #f7921e; /* Firefox */
    color: #000;
}

#wrapper > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

#wrapper .logo {
    background-image: url(/static/img/Logo_V3.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25rem;
    height: 13.5rem;
    margin: 0 auto;
}

#wrapper  h2 {
    letter-spacing: 3px;
    margin-bottom: 0;
}

#wrapper  h3 {
    margin-top: 0;
    font-weight: 300;
}

#wrapper  h2,
#wrapper  h3 {
    text-align: center;
    text-transform: uppercase;
}

#wrapper form {
    display: inline-block;
    position: relative;
    font-size: 0;
}

#wrapper input.field-element {
    width: 400px;
    padding: 12px;
    margin: 6px 0 4px;
    border: none;
    background: #252525;
    outline: none;
    color: #f5f7f7;
    font-size: 15px;
    line-height: normal;
    box-sizing: border-box;
    border-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: all 150ms ease-in;
}

#wrapper input.field-element:focus {
    background: #333333;
}

#wrapper input.button {
    padding: 12px;
    margin: 6px 0 4px;
    border: none;
    background: #333333;
    color: #f5f7f7;
    font-size: 15px;
    line-height: normal;
    box-sizing: border-box;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    transition: all 150ms ease-in;
}

#wrapper input.button:hover {
    background: #c63f1f;
}

#wrapper .response {
    text-align: center;
    color: #c63f1f;
    opacity: 0;
}

#wrapper .loading {
    padding: 12px;
    margin: 6px 0 4px;
    border: none;
    background: #c63f1f;
    color: #f5f7f7;
    font-size: 15px;
    line-height: normal;
    border-radius: 8px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    height: 42.5px;
    width: 0;
    overflow: hidden;
    text-align: center;
}

#wrapper .loading > div {
    padding: 12px;
    text-align: center;
    background-image: 
    repeating-linear-gradient(
      -45deg, 
      #c63f1f, 
      #c63f1f 1rem,
      #f05b38 1rem,
      #f05b38 2rem
    );
    background-size: 200% 200%;
    box-sizing: border-box;
    animation: barberpole 10s linear infinite;
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
}

@keyframes barberpole {
    100% {
      background-position: 100% 100%;
    }
  }