.btn {
    position: relative;
    color: #eeeeee;
    background-color: #eeeeee;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 15px;
    display: block;
    margin: auto;
    transition: 250ms;
}

.btn::before{
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #0a0d2a;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: absolute;
    inset: 0;
    display: block;
}

.btn i::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0a0d2a;
    top: 0;
    left: 80%;
    width: 15px;
    height: 4px;
    transform: translateX(-50%) skewX(325deg);
    transition: 250ms;
}

.btn:hover i::before {
    left: 20%;
    width: 20px;
}

.btn i::after {
    content: '';
    position: absolute;
    background-color: #0a0d2a;
    bottom: 0;
    left: 20%;
    width: 15px;
    height: 4px;
    transform: translateX(-50%) skewX(325deg);
    transition: 250ms;
}

.btn:hover i::after {
    left: 80%;
    width: 20px;
}

.btn-primary:hover {
    background-color: #0026ff;
    color: #005eff;
    box-shadow: 0 0 35px #0026ff;
}
