@charset "utf-8";

#applyFor {
    display: inline-block;
    position: relative;
    background-color: #003775;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  #applyFor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: skewX(-20deg);
  }

  #applyFor:hover::before {
    animation: shine 1s forwards;
  }

  #applyFor::after {
    content: '';
    position: absolute;
    right: 16px;
    opacity: 0;
    font-weight: bold;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #applyFor:hover::after {
    content: '→';
    opacity: 1;
    transform: translateX(5px);
    animation: arrowShine 0.5s ease-in-out;
  }

  @keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }

  @keyframes arrowShine {
    0% {
      opacity: 0;
      transform: translateX(0);
    }
    100% {
      opacity: 1;
      transform: translateX(5px);
    }
  }