* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    background: #eee;
  }
  
  .login-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .login-form .form-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0px 30px;
    color: #111;
  }
  
  .login-form .form-input {
    margin: 10px 0px;
  }
  
  .login-form .form-input label,
  .login-form .captcha label {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 5px;
  }
  
  .login-form .form-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #888;
    font-size: 15px;
  }
  
  .login-form .captcha {
    margin: 15px 0px;
  }
  
  .login-form .captcha .preview {
    color: #555;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #888;
  }
  
  .login-form .captcha .preview span {
    display: inline-block;
    user-select: none;
  }
  
  .login-form .captcha .captcha-form {
    display: flex;
  }
  
  .login-form .captcha .captcha-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #888;
  }
  
  .login-form .captcha .captcha-form .captcha-refresh {
    width: 40px;
    border: none;
    outline: none;
    
    cursor: pointer;
  }
  
  .login-form #login-btn {
    margin-top: 5px;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    text-transform: uppercase;
    background: black;
    color: #fff;
    cursor: pointer;
  }

  .gg-redo {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 14px;
    height: 14px;
    border: 2px solid;
    padding: 2px; 
    border-right-color: transparent;
    border-radius: 100px
}
.gg-redo::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 6px;
    height: 6px;
    padding: 2px;
    border-top: 2px solid;
    border-right: 2px solid;
    top: -3px;
    right: -1px;
    transform: rotate(68deg)
}
  