div.my-component .wp-block-button__link.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

div.my-component .wp-block-button__link {
  background-color: rgb(4,107,210) !important;  
  
}
div.my-component .wp-block-button__link:hover {
  border-color: rgb(4, 92, 180);
}
div.my-component div.wp-block-button {
  border-style: none;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
  .message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    color: white;
}

.message p {
    margin: 0;
}

.success {
    background-color: #4CAF50; /* Green */
}

.nouser{
  background-color: #0c3d54;
}

.failure {
    background-color: #f44336; /* Red */
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}