body.login {
  align-items: center;
  background: #D9D9D9;
  display: flex;
  font-family: "Martel Sans", sans-serif;
  font-weight: 300;
  height: 100dvh;
  justify-content: center;
  overflow-x: hidden;
}

.my-login-wrapper {
  display: flex;
  height: 100dvh;
  width: 100%;
}

.my-login-column {
  align-items: flex-end;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 25px 0 25px 0;
  width: 50%;
}

#login {
  margin: 0 auto;
  max-width: 500px;
  padding: 0;
  width: 100%;
}

.slider-column-inner {
  animation-delay: 0.2s;
  animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  height: 100%;
  background: url('../images/wp-login-bg.jpg') no-repeat center center/cover;
  border-radius: 25px 0 0 25px;
  width: 100%;
}

.notice {
  border-radius: 25px;
}

.login .presentation {
  margin-bottom: 15px;

  h2 {
    font-weight: 300;
  }
}

.login form {
  border-radius: 25px;
}

.login form input {
  border-radius: 25px;
}

.login form input[type="text"],
.login form input[type="password"],
.login form input[type="email"] {
  padding-inline: 20px;
}

.wp-core-ui .button,
.wp-core-ui .button-primary,
.wp-core-ui .button-secondary {
  border-radius: 25px;
}

.wp-core-ui select {
  border-radius: 25px;
}

@media (max-width: 768px) {
  .my-login-wrapper {
    padding-inline: 20px;
  }

  .my-login-column {
    width: 100%;
  }

  .slider-column {
    display: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%) scaleX(2.25);
    transform-origin: right;
  }

  80% {
    opacity: 1;
    transform: translateX(-10px) scaleX(1);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}