*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  height: 100vh;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);

}
.container .form-1 {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 40%;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}
.form-1 h6 {
  text-align: center;
  margin-top: 0.7rem;
  margin-bottom: 1.5rem;
}

input[type="text"],
input[type="password"] {
  border: 2px;
  outline: 1px;
  border-bottom: 1px solid;
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  background: none;
  margin: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 1rem;
  padding: 0.5rem;
}
label {
  margin: 0 2rem;
}
span {
  margin: 0 2rem;
  color: blue;
  cursor: pointer;
}
.submit{
  margin: 2rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 1rem;
  border: none;
  font-size: 1.1rem;
  font-weight: bolder;
  color: #fff;
  background: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
}
/* ........///Sign-Up///......... */
p {
  text-align: center;
  font-weight: bolder;
}
.icons {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}
.icons a {
  text-decoration: none;
  font-size: 1rem;
  margin: 0.2rem;
}
.icons .fa-facebook-f {
  border-radius: 50%;
  background: #5d75ab;
  color: #fff;
  padding: 1rem;
}
.icons .fa-twitter {
  border-radius: 50%;
  background: #1da1f2;
  color: white;
  padding: 1rem;
}
.icons .fa-google {
  border-radius: 50%;
  background: #ee5645;
  color: #fff;
  padding: 1rem;
}

/* ....///Media query///..... */
@media (max-width: 501px) {
  html {
    font-size: 15px;
  }
  .container .form-1 {
    width: 300px;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .container .form-1 {
    width: 450px;
  }

}
@media (min-width: 765px) and (max-width: 1200px) {
  html {
    font-size: 18px;
  }
  .container .form-1 {
    width: 540px;
    height: 550px;
  }

}
@media (orientation: landscape) and (max-height: 500px) {
  .container {
    height: 100vmax;
  }

}


* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
  .slideshow-container {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  
}

}