
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
}

.aae-login-btn {
    display: inline-flex;
    gap: 7px;
    font-size: 16px;
    line-height: 1.5;
    @media (max-width:768px){
        gap: 5px;
        font-size: 12px;
    }
    &:hover {
        color: #f6502c;
    }
}

.aae-primary-btn {
    color: var(--white);
    padding: 9px 27px;
    border-radius: 35px;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: inline-flex;
    &::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #f6502c;
        border-radius: 35px;
        z-index: -1;
        transform: translate(-50%, 0%);
        transition: 0.3s ease-in-out;
    }

    &.aae-secondary-btn {
        &::before {
            background-color: rgba(255, 255, 255, 0.03);
        }
    }

    &:hover::before {
        transform: translate(-50%, -97%);
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .aae-primary-btn {
        padding: 10px 5px;
        font-size: 14px;
    }
}