@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

:root {
  --primary: #4285f4;
  --secondary: #fdbd00;
  --tertiary: #945b70;
  
  --success: #39b54a;
  --info: #4285f4;
  --warning: #fdbd00;
  --danger: #d4145a;
  
  --light: #f7f7f7;
  --gray: #808080;
  --dark: #000000;

  --logo-aspect-ratio: 512/105;
  --font-family: 'Roboto', sans-serif;
}

* {
  font-family: var(--font-family);
}

body {
  background-color: var(--light);
  background-image: var(--wallpaper); 
  font-size: 0.9rem;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover, a:focus {
  color: #000000;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6  {
  color: #000000;
  font-weight: 400;
}

li {
  text-align: left;
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-clean {
  padding:60px 0;
}

.form-clean form {
  max-width:320px;
  width:90%;
  margin:0 auto;
  background-color:#ffffff;
  padding:30px;
  border-radius:4px;
  box-shadow:1px 1px 5px rgba(0,0,0,0.1);
}

.form-clean .illustration {
  text-align:center;
  padding:0 0 20px;
  font-size:100px;
  color:var(--primary);
}

.form-clean form .form-control {
  border-radius: 4px;
  padding: 8px;
  background:#FFFFFF;
  border: 1px solid var(--light);
  box-shadow:none;
  outline:none;
  color:inherit;
  text-indent:8px;
  height:42px;
  font-size: 1em;
}

.btn {
  border-radius: 4px;
  padding: 10px;
  /* margin-top:26px; */
  border:none;
  box-shadow:none;
  text-shadow:none;
  outline:none !important;
}

.btn:disabled {
  background-color: #FF0000;
}

.form-clean form .btn-primary {
  background:var(--primary);
}

/* .form-clean form .btn-primary:hover {
  opacity: 1;
} */

.form-clean form .btn-primary:active {
  opacity: 1;
  background:var(--dark);
}

.form-clean form .btn-black {
  color: #ffffff;
  background:#000000;
}

.form-clean form .btn-black:hover, .form-clean form .btn-black:active {
  opacity: 0.8;
} 

.form-clean form .btn-primary:active {
  transform:translateY(1px);
}

.form-clean form .btn-black:active {
  transform:translateY(1px);
}

.form-clean form .small-text {
  display:block;
  text-align:center;
  font-size:14px;
  opacity:0.9;
  text-decoration:none;
  /* margin-top: 20px; */
}

.form-clean form .small-text:hover, .form-clean form .small-text:active {
  opacity:1;
  text-decoration:none;
}

.text-left {
  text-align: left;
}

.title-form {
  margin-top: 20px;
}

.form-clean {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-clean form {
  padding-top: 25px;
  padding-bottom: 25px;
}

.container-logo {
  display: flex;
  width: 80%;
  height: 70px;
  margin: auto;
  background-image: var(--logo);
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-size: contain;
  background-position: center;
  /* aspect-ratio: var(--logo-aspect-ratio); */
}

.text-muted-plus {
  font-weight: 300;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-copy {
  padding-top: 12px;  
  padding-bottom: 7px;
  font-size: 12px;
}

.text-small {
  font-size: 12px;
}

.field-error {
  background: #FFDDDD !important;
}

.field-error {
  background: #FFDDDD !important;
}

.field-success {
  background: #E9F7E9 !important;
}

 /* Start Oauth Buttons */

 /* Google */
 .btn-google {
  position: relative;
  padding-left: 50px;
}

.btn-google::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-36px);
  width: 24px;
  height: 24px;
  background-image: url('/oauth/google-signin.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Microsoft */
.btn-microsoft {
  position: relative;
  padding-left: 50px;
}

.btn-microsoft::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('/oauth/microsoft-signin.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Okta */
.btn-okta {
  position: relative;
  padding-left: 50px;
}

.btn-okta::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-36px);
  width: 24px;
  height: 24px;
  background-image: url('/oauth/okta.svg');
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
}

/* End Oauth Buttons */

/* Margin Helpers */

.m-left-0 {
  margin-left: 0px;
}
.m-left-5 {
  margin-left: 5px;
}
.m-left-10 {
  margin-left: 10px;
}
.m-left-20 {
  margin-left: 20px;
}
.m-left-30 {
  margin-left: 30px;
}
.m-left-40 {
  margin-left: 40px;
}

.m-right-0 {
  margin-right: 0px;
}
.m-right-5 {
  margin-right: 5px;
}
.m-top-10 {
  margin-top: 10px;
}
.m-top-20 {
  margin-top: 20px;
}
.m-top-30 {
  margin-top: 30px;
}
.m-top-40 {
  margin-top: 40px;
}

.m-right-0 {
  margin-right: 0px;
}
.m-right-5 {
  margin-right: 5px;
}
.m-right-10 {
  margin-right: 10px;
}
.m-right-20 {
  margin-right: 20px;
}
.m-right-30 {
  margin-right: 30px;
}
.m-right-40 {
  margin-right: 40px;
}

.m-bottom-0 {
  margin-bottom: 0px;
}
.m-bottom-5 {
  margin-bottom: 5px;
}
.m-bottom-10 {
  margin-bottom: 10px;
}
.m-bottom-20 {
  margin-bottom: 20px;
}
.m-bottom-30 {
  margin-bottom: 30px;
}
.m-bottom-40 {
  margin-bottom: 40px;
}

/* Padding Helpers */

.p-left-0 {
  padding-left: 0px;
}
.p-left-5 {
  padding-left: 5px;
}
.p-left-10 {
  padding-left: 10px;
}
.p-left-20 {
  padding-left: 20px;
}
.p-left-30 {
  padding-left: 30px;
}
.p-left-40 {
  padding-left: 40px;
}

.p-top-0 {
  padding-top: 0px;
}
.p-top-5 {
  padding-top: 5px;
}
.p-top-10 {
  padding-top: 10px;
}
.p-top-20 {
  padding-top: 20px;
}
.p-top-30 {
  padding-top: 30px;
}
.p-top-40 {
  padding-top: 40px;
}

.p-right-0 {
  padding-right: 0px;
}
.p-right-5 {
  padding-right: 5px;
}
.p-right-10 {
  padding-right: 10px;
}
.p-right-20 {
  padding-right: 20px;
}
.p-right-30 {
  padding-right: 30px;
}
.p-right-40 {
  padding-right: 40px;
}

.p-bottom-0 {
  padding-bottom: 0px;
}
.p-bottom-5 {
  padding-bottom: 5px;
}
.p-bottom-10 {
  padding-bottom: 10px;
}
.p-bottom-20 {
  padding-bottom: 20px;
}
.p-bottom-30 {
  padding-bottom: 30px;
}
.p-bottom-40 {
  padding-bottom: 40px;
}

