:root {
  --color1: #1113A2; /*#2b2f84; /*#04264d(other blue) #1eb0e7(sky blue)*/
  --color2: white;
  --color3: black;
  --color4: rgb(18, 91, 250);
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif; 
	/*scroll-behavior: smooth;*/
}
.body{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.cover{
  width: 100%;
  height: 100%;
  position: relative;
  background-size: 100% 100%;
}
.cover img{
  width: 100%;
  height:100vh;    
  background-position: center;
  background-size: 100% 100%;
}
.insidecover{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right,
  rgba(17, 19, 162, 1) 15%,
  rgba(17, 19, 162, .7) 40%,
  rgba(4, 4, 5, 0.4) 75%,
  rgba(17, 19, 162, 0) 100%);
}
.container{
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.front-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:flex-start;
  position:relative;
  margin: auto;
  width: 100%;
}
.navbar{
  width: 100%;
  position:relative;
  top: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.navbar-icon{
  position: relative;
  padding: 3px;
}
.navbar-icon img{
  width: 100px;
  height: 100px;
  filter: drop-shadow(3px 3px 1px rgb(252, 252, 252, .3));
}
#img2{
  width: 95px;
  height:95px;  
}
.navbar-title{
  color: var(--color2);
  padding-left: 10px;
}
.intro{
  position:relative;
  color:var(--color2);
  padding: 1.5rem .5rem 1rem 5rem;
  width:50%;
}
.intro h1{
  font-size: 35px;
}
.form-login{
  position: relative;
  display: block;
  margin: 0 0 0 4rem;
  max-width: 350px;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);  
}
.form-title {
  font-size: 1.20rem;
  text-align: left;
  color: var(--color2);
  padding:10px 0;
}
.input-container {
    position: relative;
}
.input-container input, .form button {
    outline: none;
    border: 1px solid transparent;
    margin: 8px 0;
}
.input-container input { 
    padding: 1rem;
    padding-right: 3rem;
    font-size: 1rem;
    line-height: 1.25rem;
    width: 315px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border:1px solid lightgray;
}
.input-container span {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    place-content: center;
    cursor: pointer;
}
.input-container span svg {
    color: #9CA3AF;
    width: 1rem;
    height: 1rem;
}
button {
  cursor: pointer;
  transition: all .2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--color1);
  border:1px solid lightgray;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #ffffff;
  width: 50%;
  /*box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.3), 0 4px 6px -2px rgba(255, 255, 255, 0.1);*/
}
button:hover {
  background: #0c0e8b;
}
button > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform .3s ease-in-out;
}
button:hover svg {
  transform: translateX(25px);
}
button:active {
  transform: scale(0.95);
}
.signup-link, .forgotpassword-link {
  font-size: 0.875rem;
  line-height: 1rem;
  text-align: center;
  padding: 0.5rem;
  color: var(--color2);
}
.signup-link a, .forgotpassword-link a{
  color: var(--color2);
  font-weight: 25px;
  cursor: pointer;
}
.forgotpassword-link {
  text-align: right;
  font-size: 0.775rem;
}

.footer{
  background-color: var(--color2);
  width: 100%;
  position:relative;
}
.footer p{
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #333;
}
/*Nav */
.navbar{
  width: 100%;
  position: relative;
  top: 0;
  background-color: transparent; /*temporary*/
  display: flex;
  align-items: center;
  padding-left: 10px;
}
.navbar-icon{
  position: relative;
  padding: 3px;
}
.navbar-icon img{
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 10px 10px rgba(255, 255, 255, 0.22));
}
#img2{
  width: 95px;
  height:95px;  
}
.navbar-title{
  position: relative;
  color: #fff;
  padding-left: 10px;
}
.navbar-links{
  position: absolute;
  right: 1rem;
}
.navbar-links ul {
  list-style: none;
  display: flex;
    
}
.navbar-links li {
  height: 100%;
  margin: 0 10px; 
  padding: 1rem;
  border-bottom: 5px solid transparent;
}
.navbar-links li:hover, 
.navbar .active{
  border-bottom: 5px solid #fff;
    
}
.navbar-links a {
  padding: 1rem;
  text-decoration: none;
  color: #fff;
  width: 100%;
}
.navbar-links .user-icon{
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.navbar-links .user-icon img{
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  margin: 10px;
}
/*End Header*/
@media only screen and (max-width: 1162px){
  .intro{
    width:70%;
    padding:0 0 0 4rem;
  }
  .intro h1{
    font-size: 31px;
  }
  .form-login{
    padding: 0 .2rem;
  }
  button{
    width: 60%;
    justify-content: center;
  }
}

@media only screen and (max-width: 900px){
/* for mobile phones and tablets*/
  .insidecover{
    background-image: linear-gradient(to bottom,
    rgba(17, 19, 162, 1) 15%,
    rgba(17, 19, 162, .7) 40%,
    rgba(17, 19, 162, .4) 70%,
    rgba(17, 19, 162, 0) 100%);
  }
  .navbar-icon img{
    width: 85px;
    height: 85px;
  }
  #img2{
    width: 80px;
    height:80px;  
  }
  .navbar-title{
    padding: 0;
  }
  .navbar-title p{
    text-align: center;
    font-size: 15px;
  }
  .intro{
    padding: 20px 35px;
    width: 100%;
    padding:0;
    text-align: center;
  }
  .intro p{
    font-size: 15px;
  }
  .form-login{
    background:rgba(17, 19, 162, .3);
    width: 90%;
    margin:auto;
    margin-top:40px;
  }
  .form-title {
    text-align: left;
    padding:0;
    margin-bottom: 1rem;
    color: var(--color2);
  }
  button, button p{
    width: 100%;
    justify-content: center;
  }
  .input-container input { 
    width: 100%;
  }

}
@media only screen and (max-width: 780px){
  .intro{
    padding: 20px 32px;
  }
  .intro h1{
    font-size: 29px;
  }
  .intro p{
    font-size: 14px;
  }
  .form-login{
    margin-top:30px;
  }
  .form-title {
    text-align: left;
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--color2);
  }
}
@media only screen and (max-width: 600px){
  .intro{
    padding: 20px 25px;
  }
  .intro h1{
    font-size: 26px;
  }
  .intro p{
    font-size: 13px;
  }
  .form-login{
    width: 90%;
    margin:auto;
    margin-top:20px;
  }
  .form-title {
    text-align: left;
    font-size: 20px;
    padding:0;
    margin-bottom: 1rem;
    color: var(--color2);
  }
  .input-container input { 
    font-size: 17px;
    width: 100%;
    padding: .9rem;
  }
}

@media only screen and (max-width: 480px){
  .navbar{
    padding: 0;
    justify-content: center;
    flex-direction: column;
  }
  .navbar-icon{
    padding: 5px;
  }
  .navbar-icon img{
    width: 70px;
    height: 70px;
  }
  #img2{
    width: 65px;
    height:65px;  
    background-size: contain;
  }
  .navbar-title{
    padding: 0;
  }
  .navbar-title p{
    text-align: center;
    font-size: 12px;
  }
  .footer p{
    background-color: var(--color2);
    font-size: 12px;
  }
  
  .intro{
    padding: 20px 10px;
  }
  .intro h1{
    font-size: 23px;
  }
  .intro p{
    font-size: 12px;
  }
  .form-login{
    width: 90%;
    margin:auto;
    margin-top:10px;
    background-color: #fff;
    padding:20px;
  }
  .form-title {
    font-weight: bolder;
    text-align: center;
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--color1);
  }
  .input-container input { 
    font-size: 15px;
    padding: .8rem;
  }
  .button {
    width: 100%;
  }
  .signup-link, .forgotpassword-link {
    padding: 0.875rem;
    color: var(--color1);
    text-shadow: none;
  }
  .signup-link a, .forgotpassword-link a{
    color: var(--color1);
  }
}