* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background: #e35869;
  font-family: 'Rubik', sans-serif;
}



.login-form {
  background: #fff;
  width: 500px;
  margin: 65px auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-radius: 4px;
  box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
}

.login-form h1 {
  padding: 35px 35px 0 35px;
  font-weight: 300;
}

.login-form .content {
  padding: 35px;
  text-align: center;
}

.login-form .input-field {
  padding: 12px 5px;
}

.login-form .input-field input {
  font-size: 16px;
  display: block;
  font-family: 'Rubik', sans-serif;
  width: 100%;
  padding: 10px 1px;
  border: 0;
  border-bottom: 1px solid #747474;
  outline: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.login-form .input-field input::-webkit-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input::-moz-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input:-ms-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input::-ms-input-placeholder {
  text-transform: uppercase;
}

.login-form .input-field input::placeholder {
  text-transform: uppercase;
}

.login-form .input-field input:focus {
  border-color: #222;
}

.login-form a.link {
  text-decoration: none;
  color: #747474;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
}

.login-form .action {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.login-form .action button {
  width: 100%;
  border: none;
  padding: 18px;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  background: #e8e9ec;
  color: #777;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  letter-spacing: 0.2px;
  outline: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.login-form .action button:hover {
  background: #d8d8d8;
}

.login-form .action button:nth-child(2) {
  background: #2d3b55;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
}

.login-form .action button:nth-child(2):hover {
  background: #3c4d6d;
}


/* =================Login Page=============== */
.login-wrapper {
  background: linear-gradient(135deg, #ef4164, #ff9acb);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-main {
  background: linear-gradient(135deg, #fff1e6, #ffd6f0);
  border-radius: 5px;
  padding: 40px;
  width: 100%;
  max-width: 1100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.login-panel {
  background: #fff;
  border-radius: 5px;
  padding: 40px 30px;
}

.login-input {
  border-radius: 30px;
  padding: 10px 20px;
}

.login-btn {
  border-radius: 30px;
  background: #ef4164;
  border: none;
}

.login-btn:hover {
  background: #d73758;
}

.left-title {
  color: #ef4164;
  font-weight: 700;
  letter-spacing: 1px;
}

.login-title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: #f25176;
}

.login-panel input {
  background: #fff;
  border: 2px solid #f14b70;
  border-radius: 50px;
}

.login-btn {
  background: #f25176;
  border-radius: 20px;
  width: 50% !important;
}


.masked-text {
  font-size: 20px;
  font-weight: bold;
  color: transparent;
  background-image: url('https://images.unsplash.com/photo-1732535725600-f805d8b33c9c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: 200%;
  background-position: 0 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #f2517775;
  animation: animate-background 5s infinite alternate linear;
}

@keyframes animate-background {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.btn-login-outline {
  color: #fa7191;
  border-color: #ffb1c3;
}

.btn-login-outline:hover {
  color: #f11e4f;
  border-color: #f03460;
}

.btn-login-outline.active {
  color: #2384f3;
  border-color: #2384f3;
  background: #88bfffe1;
}

@media screen and (max-width: 550px) {
  .login-main {
    padding: 10px;
  }
}

/* =================Login Page=============== */