#login {
    width:400px !important;
}

#wp-auth-check {
    width:400px !important;
}

.openid-connect-login-button .button {
  background-color: #2372b9 !important;
  color: white !important;
  font-size: 15px !important;
  transform: scale(1);
  animation: pulse 4s infinite;
}

.openid-connect-login-button .button:hover {
  background-color: #11395c !important;
  color: white !important;
  font-size: 15px !important;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(0.95);
    }
}
