@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #ffc247, #4ca9ff);
    min-height: 100vh;
    margin: 0;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

::selection {
  background: linear-gradient(135deg, #ffc247, #4ca9ff);
}

.container {
  max-width: 440px;
  padding: 0 20px;
  margin: 50px auto;
}

.wrapper {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
}

.wrapper .title {
  /* height: 90px; */
  background: #ffffff;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title img {
  width: 170px;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 0;
}

.wrapper form {
  padding: 10px 25px 25px 25px;
}

.wrapper form .row {
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}

.wrapper form .row input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}

form .row input:focus {
  border-color: linear-gradient(135deg, #ffc247, #4ca9ff);

  box-shadow: inset 0px 0px 2px 2px linear-gradient(135deg, #ffc247, #4ca9ff);

}

form .row input::placeholder {
  color: #999;
}

.wrapper form .row i {
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(135deg, #ffc247, #4ca9ff);
  border: 1px solid linear-gradient(135deg, #ffc247, #4ca9ff);
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form .pass {
  margin: -8px 0 20px 0;
}

.wrapper form .pass a {
  color: #2a6a9b;
  font-size: 17px;
  text-decoration: none;
}

.wrapper form .pass a:hover {
  text-decoration: underline;
  color: #9b2a2a;
} 

.wrapper form .button input {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: linear-gradient(135deg, #ffc247, #4ca9ff);
  border: 1px solid linear-gradient(135deg, #ffc247, #4ca9ff);
  cursor: pointer;
}

form .button input:hover {
  background: linear-gradient(135deg, #ffc24783, #4ca8ff83);
  color: #4b4b4b;
}

.wrapper form .signup-link {
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}

.wrapper form .signup-link a {
  color: linear-gradient(135deg, #ffc24783, #4ca8ff83);
  text-decoration: none;
}

form .signup-link a:hover {
  text-decoration: underline;
  color: linear-gradient(135deg, #ffc24783, #4ca8ff83);

}