/*  ----------------------------------------------------
GENERAL
-------------------------------------------------------- */

/* ---------------- GOOGLE FONTS ------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,700;1,700&display=swap');

/* ----------------Text Fonts ------------------- */

html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}

body {
  background-image:  linear-gradient( rgba(4, 9, 30, 0.80),rgba(4, 9, 30, 0.80) ), url(../img/login-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.625em;
  position: relative;
  }

body .overlay-bg {
background: rgba(4, 9, 30, 0.80)
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0
}

a {
  color: #eee;
  outline: 0;
  text-decoration: none;
  }

a:hover {
  color: #00bec7;
  }

.align {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.grid {
  padding-top: 200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 20rem;
}

.hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* modules/form.css */

input {
  background-image: none;
  border: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  transition: background-color 0.3s;
}

input[type='submit'] {
  cursor: pointer;
}

.form input[type='password'],
.form input[type='text'],
.form input[type='email'],
.form input[type='submit'] {
  width: 100%;
}

.form__field {
  display: flex;
  margin: 15px;
}

.form__input {
  height: 51px;
}

.login {
  color: #eee;
}

.login label,
.login input[type='text'],
.login input[type='email'],
.login input[type='password'],
.login input[type='submit'] {
  border-radius: 0.25rem;
  padding: 1rem;
}

.login label {
  background-color: #363b41;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.login input[type='password'],
.login input[type='email'],
.login input[type='text'] {
  background-color: #3b4148;;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.login input[type='password']:focus,
.login input[type='password']:hover,
.login input[type='email']:focus,
.login input[type='email']:hover,
.login input[type='text']:focus,
.login input[type='text']:hover {
  background-color: #434a52;
}

.login input[type='submit'] {
  background-color: #00bbc5;
  color: #eee;
  font-weight: 700;
  text-transform: uppercase;
}

.login input[type='submit']:focus,
.login input[type='submit']:hover {
  background-color: #eee;
}