* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}

body {
  /* background-image: url('/assets/img/bg.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

/* White overlay using pseudo-element */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.153);
  z-index: -1;
}

::selection {
  background: linear-gradient(135deg, #e5097f, #0078bf);

}

.container {
  width: 90%;
  max-width: 600px;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  animation: fadeSlideUp 1s ease forwards;
  margin: 0 auto;
  margin-top: 0px;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 0px;
  }
}

.wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px #000;
}
.upr-head{
  align-items: center;
  justify-content: center;
}

.upr-head h1{
  font-size: 60px;
  padding-top: 35px;
  /* margin-bottom: 7px; */
}

.upr-head p{
  font-size: 20px;
  /* padding-top: 20px; */
  /* margin-bottom: 7px; */
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 450px;
  height: auto;
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 0;
}

@media (max-width: 520px) {
  .logo {
    max-width: 300px;
  }
}
@media (max-width: 350px) {
  .logo {
    max-width: 250px;
  }
}
@media (max-width: 280px) {
  .logo {
    max-width: 200px;
  }
}

.login-form {
  padding: 10px 25px 25px 25px;
}

.login-form .row {
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}

.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;
}

.input:focus {
  border-color: #949494;
  box-shadow: inset 0px 0px 2px 2px linear-gradient(135deg, #e5097f, #0078bf);


}

.input::placeholder {
  color: #999;
}

.login-form .row i {
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: linear-gradient(135deg, #e5097f, #0078bf);

  border: 1px solid #949494;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button input {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: linear-gradient(135deg, #e5097f, #0078bf);

  border: 1px solid #949494;
  cursor: pointer;
}

.button input:hover {
  background: linear-gradient(135deg, #e5097ea7, #0079bfa2);
  color: #ffffff;
}