
 /* ------------------------------------------------------------------- */
/*                        WebCBC Log In Style Sheet                    */
/*                        By Albert Schade III                         */
/*                        Copyright 2022                               */
/* ------------------------------------------------------------------- */
/* -------------------------Globals ---------------------------------- */
/* ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,700;1,300&display=swap');

:root {
    --primary-color: #7b95b3;
    --secondary-color: #27236d;
    --highlight-color: #ffd60c;

}
body {
   font: 15px/1.5 'Lato', sans-serif;
   padding: 0;
   margin: 0;
   color: #333;
   line-height: 1.6;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* ---------------------- Showcase -------------------------- */
/* ---------------------------------------------------------- */
#showcase {
  min-height: 300px;
  background: url(../img/CodesSplash.jpg) no-repeat center;
  border-top:var(--highlight-color) 5px solid ;
  background-color: black;
}
.login-wrapper {
  height: 50vh;
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 80px 40px 40px;
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}
.form::before {
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255, 0.08);
  transform: skewX(-26deg);
  transform-origin: bottom left;
  border-radius: 10px;
  pointer-events: none;
}
.form img {
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  width: 100px;
  background: rgba(255,255,255, 0.8);
  border-radius: 50%;
}
.form h2 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #8dabcd;
}
.form .input-group {
  position: relative;
}
.form .input-group input {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background-color: transparent;
  color: inherit;
}
.form .input-group label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 1rem;
  pointer-events: none;
  transition: .3s ease-out;
}
.form .input-group input:focus + label,
.form .input-group input:valid + label {
  transform: translateY(-18px);
  color: #8dabcd;
  font-size: .8rem;
}
.button {
  margin-right: auto;
  border: none;
  background-color: #8dabcd;
  padding: 10px 60px;
  border-radius: 5px;
  font-weight: bold;
}
.form .error-group {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: x-large;
  font-weight: bold;
  color: #e91b25;
  text-shadow: -1.5px 0 5px white, 0 1.5px 5px white, 1.5px 0 5px white, 0 -1.5px 5px white;
}

