﻿*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  background: linear-gradient(to bottom, #0072ce, #004c97);
  font-family: 'Nunito', sans-serif;
  color: #292929;
}

body:before {
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url('../../images/adg_icon_banner.png') no-repeat 50% 80%;
}

p {
  margin: 0 0 10px;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 15px 25px 10px;
  border-bottom: 1px solid white;
}
.logo {
  width: 300px;
  max-width: 100%;
}

.formHolder {
  position: relative;
  margin: auto;
  width: 475px;
  max-width: calc(100% - 40px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 1px 20px -5px rgba(25, 25, 25, 0.2);
  padding: 15px 20px;
}

.fieldWrapper {
  margin-bottom: 5px;
}

label {
  display: block;
  padding-bottom: 5px;
  font-weight: 300;
  margin-left: 5px;
}

input[type='text'],
input[type='password'] {
  width: 100%;
  font-size: 1.15em;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 0 5px;
  color: #464646;
  background: #e6e6e6;
  border: 2px solid #dedede;
  transition: border-color 200ms;
}

input[type='text']:hover,
input[type='password']:hover {
  border-color: #a9a9ad;
}

.errorMessage {
  color: brown;
}

.buttonHolder {
  margin-top: 15px;
  text-align: center;
}

.solidBtn {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(-270deg, #c91c34 10%, #aa182c);
  border-radius: 90px;
  padding: 8px 30px;
  color: #fff !important;
  text-transform: uppercase;
  font-size: 1.1rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1.4rem;
  position: relative;
  cursor: pointer;
  outline: 0px;
  border: 0px;
}
.solidBtn:before {
  content: ' ';
  height: 100%;
  width: 100%;
  display: block;
  border: 1px solid #aa182c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  border-radius: 90px;
  transition: height 0.3s, width 0.3s;
}
.solidBtn:hover,
.solidBtn:focus {
  background: linear-gradient(-270deg, #26d07c 10%, #42dd90);
}
.solidBtn:hover:before,
.solidBtn:focus:before {
  border-color: #26d07c;
  height: calc(100% + 12px);
  width: calc(100% + 12px);
}
