html {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

*, *:before, *:after {
  box-sizing: inherit;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

body {
  font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
.bg-blue {
  background: #2c6ed5;
}

.bg-red {
  background: #fa4251;
}

.bg-gra-01 {
  background: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a18cd1));
  background: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: -moz-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: -o-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: linear-gradient(to top, #fbc2eb 0%, #a18cd1 100%);
}

.bg-gra-02 {
  background: -webkit-gradient(linear, left bottom, right top, from(#fc2c77), to(#6c4079));
  background: -webkit-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: -moz-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: -o-linear-gradient(bottom left, #fc2c77 0%, #6c4079 100%);
  background: linear-gradient(to top right, #fc2c77 0%, #6c4079 100%);
}
.nav{
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.nav a{
  all: unset;
  display: inline-block;
  font-size: 20px;

}
.nav a span {
  color: #525252;
  padding-bottom: 20px;
  transition: all .3s;
  cursor: pointer;
}
.nav a span:hover{
  padding-bottom: 2px;
  border-bottom: 2px solid #525252;
  color: deepskyblue;
  
}
.card-footer{
  padding: 20px ;
  display: flex;
  justify-content: center;

}
.another {
  all: unset;
  padding: 20px;
  color: #525252;
  font-size: 20px;
  border: 2px solid #009dea;
  transition: all .3s;
  border-radius: 5px;
}
.another-submit {
  padding: 20px 100px;
}
.another:hover {
  cursor: pointer;
  background: #009dea;
  color: white;
}

.another:hover .icon{
 transition: all .3s !important;
  color: white !important;
}

.login-error-alert{
  
  color: salmon;
 
}
.title {
  font-size: 22px;
  color: #525252;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}
.sino{
  outline: none;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
  line-height: 50px;
  background: #fafafa;
  width: 100%;

}

.label {
  font-size: 16px;
  color: #555;
  text-transform: capitalize;
  display: block;
  margin-bottom: 5px;
}

.main-card{
  background: white;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 800px;
  align-self: center;
  -webkit-box-shadow: -1px 0px 15px 5px rgba(0,0,0,0.49); 
  box-shadow: -1px 0px 15px 5px rgba(0,0,0,0.49);
}
.main-card-login{
  width: 100%;
}
@media (max-width: 1020px) {
  .main-card {
    width: 80%;
    height: 100%;
    border-radius: 0;
  }
}
