.wrap.ah-em-form {
    margin: 20px auto;
    max-width: 700px;
   
}
.ah-em-form .widefat.full-size {
    background: #fff;
   
    margin-bottom: 10px;
    position: relative;
}
.notice.e-notice.e-notice--dismissible.e-notice--extended {
    display: none;
}
.wrap.ah-em-form .full-size h1 {
    background: #2271b1;
    color: #fff;
    font-weight: 700;
    padding: 10px 20px 10px;
 
}
.wrap.ah-em-form form {
    padding: 0px 20px 0px;
}
.ah-em-auth {
    padding: 10px 20px 30px;
}
.ah-em-form ul{

    list-style: outside;
    font-size: 20px;
    padding: 0px 20px 20px;
    line-height: 20px;
}
/* HTML: <div class="loader"></div> */
.ah-em-loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    position: absolute;
    left: 50%;
    top: 30%;
  }
  .ah-em-loader::before,
  .ah-em-loader::after {    
    content:"";
    grid-area: 1/1;
    --c:no-repeat radial-gradient(farthest-side,#25b09b 92%,#0000);
    background: 
      var(--c) 50%  0, 
      var(--c) 50%  100%, 
      var(--c) 100% 50%, 
      var(--c) 0    50%;
    background-size: 12px 12px;
    animation: l12 1s infinite;
  }
  .ah-em-loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 8px 8px;
    animation-timing-function: linear
  }
  
  @keyframes l12 { 
    100%{transform: rotate(.5turn)}
  }