* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #414141 !important;
  font-family: Arial, Helvetica, sans-serif;
}
hr.style-one {
  border: 0;
  height: 1px;
  background: #fff;
  background-image: linear-gradient(to right, #ccc, #fff, #ccc);
}
.fa {
  color: #ccc !important;
  font-size: 20px !important;
  margin-left: 10px !important;
}
.home-card {
  background-color: #2f2e2e !important;
  color: #fff !important;
}
.number {
  text-align: right !important;
  font-size: 60px;
  font-weight: 800;
}
.text-description {
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  .lead {
    font-size: 20px !important;
    margin-top: 2% !important;
  }
  .home-button {
    margin-bottom: 5%;
  }
  .card-container {
    margin-bottom: 2% !important;
  }
  .copyright {
    text-align: center !important;
    margin-bottom: 5% !important;
  }
  .social .fa {
    margin-top: 5% !important;
    text-align: center !important;
    float: none !important;
    margin-bottom: 5% !important;
  }
}
.wrapper {
  background: #414141;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
    0 32px 64px -48px rgba(0, 0, 0, 0.5);
}

/* Login & Signup Form CSS Start */
.form {
  padding: 25px 30px;
}
.form header {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  color: #fff;
  border-bottom: 1px solid #e6e6e6;
}
.form form {
  margin: 20px 0;
}
.form form .error-text {
  color: #721c24;
  padding: 8px 10px;
  text-align: center;
  border-radius: 5px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  margin-bottom: 10px;
  display: none;
}
.form form .name-details {
  display: flex;
}
.form .name-details .field:nth-child(1) {
  margin-right: 30px;
}
.form .name-details .field:nth-child(2) {
  margin-right: 30px;
}
.form .name-details .field:nth-child(3) {
  margin-right: 30px;
}
.form .name-details .field:nth-child(4) {
}
.form form .field {
  display: flex;
  margin-bottom: 10px;
  flex-direction: column;
  position: relative;
}
.form form .field label {
  margin-bottom: 2px;
  color: #fff;
}
.form form .input input {
  height: 50px;
  width: 100% !important;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 50px;
  border: 1px solid #ccc;
}
.form form .input input:hover {
  background-color: #6e767a;
  border: 1px solid #ccc;
  color: #fff !important;
}
select {
  height: 50px;
  width: 100%;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 50px !important;
  border: 1px solid #ccc;
}
select:hover {
  background-color: #6e767a;
  border: 1px solid #ccc;
  color: #fff !important;
}
input:hover::placeholder {
  color: rgb(255, 255, 255);
}

.form form .field input {
  outline: none;
}
.form form .image input {
  font-size: 17px;
}
.form form .button input {
  height: 50px;
  border: none;
  color: #fff;
  font-size: 17px;
  background: #4682b4;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 13px;
  width: fit-content;
  padding: 0 25px;
}
.form form .button input:hover {
  color: #fff;
  background: #000;
}
.form form .field i {
  position: absolute;
  right: 15px;
  top: 70%;
  color: #ccc;
  cursor: pointer;
  transform: translateY(-50%);
}
.form form .field i.active::before {
  color: #333;
  content: "\f070";
}
.form .link {
  text-align: left;
  margin: 10px 0;
  color: #fff;
  font-size: 17px;
}
.form .link a {
  color: #fff;
}
.form .link a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 450px) {
  .form {
    padding: 20px;
  }
  .form header {
    text-align: center;
  }
  .form form .name-details {
    flex-direction: column;
  }
  .form .name-details .field:nth-child(1) {
    margin-right: 0px;
  }
  .form .name-details .field:nth-child(2) {
    margin-right: 0px;
  }
  .form .name-details .field:nth-child(3) {
    margin-right: 0px;
  }
  .form .name-details .field:nth-child(4) {
  }
}
