@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.pages {
  background-color: rgb(223, 223, 223);
  height: 100vh;
}

.authContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.bg-img{
  height: 100vh;
  width: 100%;
  position: absolute;
  background: url('/images/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.5);
}

.pages .card {
  width: 450px;
  border: none;
  border-radius: 0;
}

.pages .card .error {
  font-size: 14px;
  color: red;
}

.pages .card .card-header {
  background-color: #012538;
  color: white;
}

.pages .card .card-content {
  padding: 10px 20px 25px 20px;
}

.pages .card label {
  line-height: 0.8;
  color: #012538;
  font-weight: 500;
}

.pages .card .element {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
}

.pages .card input {
  margin: 8px 0;
  padding: 8px;
  border: 1px solid #012538;
}

.pages .card input:focus {
  outline: none;
}

.pages .card input::placeholder {
  font-size: 15px;
}

.pages .card .button {
  width: fit-content;
  padding: 4px 16px;
  background-color: #012538;
  color: white;
  font-size: 15px;
  border: none;
  text-decoration: none;
}

.buttons {
  display: flex;
  justify-content: space-between;
}

.forgotpwd {
  display: flex;
  justify-content: center;
}

.forgotpwd a {
  text-decoration: none;
  color: #012538;
}



.navbar {
  background: #3A424F !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
}



.navbar ul {
  color: white !important
}

.navbar a {
  color: white !important
}

.brand .brandContainer {
  position: relative;
}

.brand .brandContainer img {
  height: 80vh;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.5)
}

.brand .brandContent {
  position: absolute;
  top: 25%;
  left: 20%;
}

.brand .brandContent h4 {
  font-size: 2.5em;
  text-transform: uppercase;
}

.brand .brandContent h6 {
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
}

.brand .brandContent h4,
h6 {
  color: white;
}

.brand .brandContent .brandButtons .btn {
  padding: 10px;
  margin-top: 10px;
  margin-right: 8px;
}

.description .descriptionContainer {
  text-align: center;
}

.description .descriptionContainer h4 {
  font-size: 26px;
  font-weight: 400;
  margin: 15px 0;
}

.description .descriptionContainer p {
  font-size: 15px;
}

.description .descriptionCardContainer .descriptionCard {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description .descriptionCardContainer .descriptionCard .iconContainer {
  border-radius: 50%;
  background: green;
  width: fit-content;
  padding: 30px;
  margin: 20px 0;
}

.description .descriptionCardContainer .descriptionCard .iconContainer i {
  font-size: 40px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  color: white;
}

.description .descriptionCardContainer .descriptionCard p {
  text-align: center;
  font-size: 14px;
}

.features {
  background: #F4F5F7;
  margin-top: 50px;
  padding: 50px 0;
}

.features .featureContainer {
  text-align: center;
}

.features .featureContainer i {
  font-size: 35px;
  width: 50px;
  display: flex;
  justify-content: center;
  color: green
}

.features .featureContainer h4 {
  padding: 15px 0;
}

.features .featureContainer .inventoryImg {
  width: 100%;
}


.support .supportContainer {
  padding: 50px 0;
  text-align: center;
}

.support .supportContainer h4 {
  font-size: 28px;
}

.support .supportContainer p {
  font-size: 15px;
}

.support .supportContainer h6 {
  color: green
}

.support .supportContainer .supportCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.support .supportContainer .supportIcon {
  border-radius: 50%;
  padding: 20px;
  border: 1px solid grey;
  text-align: center;
  width: fit-content;
  margin-bottom: 16px;
}

.support .supportContainer .supportIcon i {
  width: 50px;
  height: 50px;
  font-size: 40px;
  color: green;
  display: flex;
  justify-content: center;
}

.footer {
  background: #3A424F;
  color: white;
  padding: 50px 0;
}

.footer .links {
  display: flex;
  flex-direction: column;
}

.footer .title {
  color: green;
  font-size: 20px;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: green
}

@media only screen and (max-width: 900px) {
  .brand .brandContent {
    position: absolute;
    top: 25%;
    left: 2%;
  }

  .brand .brandContent h4 {
    font-size: 2em;
  }
  
  .brand .brandContent h6 {
    font-size: 0.9em;
  }
}