@import url('https://fonts.googleapis.com/css2?family=Anton&family=Saira+Semi+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*======> Default <======*/
* {
    font-family: 'Anton', sans-serif;
    font-family: 'Saira Semi Condensed', sans-serif;
}

/*======> Font family <======*/
h1,h2,h3,h4,h5,h6,span,a{
  font-family: 'Anton', sans-serif;
font-family: 'Saira Semi Condensed', sans-serif;
}

/*======> Root colour <======*/
:root {
  --primary-color: #50c878;
  --secondary-color: #f0ffff;
  --third-color: #1b1b1b;
  --fourth-color: #f82b50;
  --fifth-color: #38ed77;
  --sixth-color: #e4e4e4;
  --seventh-color: #b7b7b7;
}

/*======> Background image <======*/
.view{
  background-image:-webkit-linear-gradient(top, 
  rgba(0,0,0,0.9) 0%, 
  rgba(0,0,0,0) 20%,
  rgba(0,0,0,0) 80%,
  rgba(0,0,0,0.9) 100%
  ),
  -webkit-linear-gradient(left, 
  rgba(0,0,0,0.9) 0%, 
  rgba(0,0,0,0) 20%,
  rgba(0,0,0,0) 80%,
  rgba(0,0,0,0.9) 100%
  ), url("../images/Bg/desktop/bg1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 20px 0 20px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/*======> Class container <======*/
.container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.left-text-one {
  font-size: 50px;
  color: white
}

.text-pr {
  color: #50c878;
}

.left-text-one{
  font-weight: 600;
}

.left-text-one span{
  position: relative;
}

.left-text-one span::before{
  content: "LapShop";
  color: #50c878;
  animation: words 20s infinite;
}

.left-text-one span::after{
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  background-color:rgb(27, 27, 27);
  border-left: 2px solid #50c878;
  right: -8px;
  animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
  to{
      border-left: 2px solid #ff7f5000;
  }
}

@keyframes words {
  0%, 20% {
    content: "LapShop";
  }
  21%, 40% {
    content: "LapTops";
  }
  41%, 60% {
    content: "GAMING LAPTOPS";
  }
  61%, 80% {
    content: "ULTRABOOKS";
  }
  81%, 100% {
    content: "2 IN 1";
  }
}

@keyframes typing {
  10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
      width: 0;
  }
  5%,20%,25%,40%,45%,60%,65%,80%,85%{
      width: calc(100% + 8px);
  }
}

.left-text-two {
  font-size: 30px;
  color: white
}

.left-text-three {
  font-size: 20px;
  color: white
}

/*======> Class form-box <======*/
.form-box {
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: auto;
}

/*======> Class title <======*/
.title{
  color: var(--secondary-color);
}

/*======> Input start <======*/
.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}

.input {
    height: 35px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    outline: none;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
    color: var(--seventh-color);
}

.input-field .input:focus + label,
.input-field label.active {
  top: -10px;
  left: 10px;
  font-size: 12px;
}

#referal-input{
  border: 1px solid #50c878;
  background-color: #282828;
  color: var(--secondary-color);
}

.input-field .input:focus,
.input-field .input:valid {
    border-bottom: 1px solid var(--primary-color);
}

.input-field .forgot-password{
    font-size: small;
}

.input-field a{
  text-decoration: none;
  color: var(--secondary-color);
}

.paragraph{
    font-size: 15px;
    color: var(--secondary-color);
}

#submit{
  background-color: var(--primary-color);
  font-size: 15px;
  color: var(--third-color);
  font-weight: 600;
}

/*======> Input end <======*/

/*======> Invalid class for email validation <======*/
.invalid-input {
  border-bottom-color: var(--fourth-color) !important; 
}

.input-field .input-error {
  position: absolute;
  bottom: -5px;
  font-size: 14px;
  color: #f82b50;
}

/*======> Class sign in <======*/
.signin {
    text-align: center;
    font-size: small;
    margin-top: 25px;
}

/*======> Class sign in span and a tags <======*/
.signin span, .signin a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: .5s;
}

/*======> Class sign in a tag <======*/
.signin a{
    font-weight: 700;
}

/*======> Span tag a hover <======*/
span a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

/*======> Input field colour <======*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px rgb(25, 25, 25) inset !important;
}

input:-webkit-autofill{
  -webkit-text-fill-color: rgb(255, 255, 255) !important;
}