<script>
  document.addEventListener('DOMContentLoaded', function() {
		
    // Identify Buttons
    const mainButton = document.querySelector('.scheme-switch-alpha__button--main');
    const altButton = document.querySelector('.scheme-switch-alpha__button--alt');
    
    // Set Focus on Click With Slight Delay
    altButton.addEventListener('click', function() {
      setTimeout(function() {
        mainButton.focus();
      }, 1);
    });
    mainButton.addEventListener('click', function() {
      setTimeout(function() {
        altButton.focus();
      }, 1);
    });
  });
</script>
시작하기Log in
<script>
  document.addEventListener('DOMContentLoaded', function() {
		
    // Identify Buttons
    const mainButton = document.querySelector('.scheme-switch-alpha__button--main');
    const altButton = document.querySelector('.scheme-switch-alpha__button--alt');
    
    // Set Focus on Click With Slight Delay
    altButton.addEventListener('click', function() {
      setTimeout(function() {
        mainButton.focus();
      }, 1);
    });
    mainButton.addEventListener('click', function() {
      setTimeout(function() {
        altButton.focus();
      }, 1);
    });
  });
</script>
<style>
  /* -- The root styles must go in the element of the structure with the name "Login form". --*/ 
  .login-7__form {

    /* Styles applied to all checkboxes */
    & .options-wrapper {
      & li {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
      }

      /* Unique styles for text remember me */
      & label[for="form-field-grxbiw-0"] {
        font-size: var(--text-s);
        line-height: 100%;
      }
    }
		
    /* Style link forgot your password */
    & .login-7__form-forgot-password{
    	text-align: end;
      font-size: var(--text-s);
      font-weight: 600;
      color: var(--primary);
      line-height:100%;
    }
    
    /* Additional styles in inputs with redirection bug in Bricks version 1.10. */
    /* Width styles in inputs */
    .form-group {
      /* 100% width inputs */
      &:nth-of-type(1), &:nth-of-type(2) {
        width: 100% !important;
      }

      /* 50% width inputs */
      &:nth-of-type(3), &:nth-of-type(4) {
        width: 50% !important;
      }
    }
  }
</style>