.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: var(--text-light);
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
}
.btn_03:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid var(--text-light);
    border-right: 2px solid var(--text-light);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
}
.btn_03:hover {
    background: var(--text-light);
    color: var(--accent-color);
}
.btn_03:hover:before {
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18em;
    height: 1.2em;
    position: relative;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    box-sizing: border-box;
    padding: 0 45px 0 25px;
    color: var(--text-light);
    font-size: .8em;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
}
.btn_02:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid var(--text-light);
    border-right: 2px solid var(--text-light);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
}
.btn_02:hover {
    background: var(--text-light);
    color: var(--accent-color);
}
.btn_02:hover:before {
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}