.button-form {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #4f46e5;
    border: 1px solid #4f46e5;
    border-radius: 0.3rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    justify-content: center;
}

.button-form:hover {
    background-color: transparent;
    color: #4f46e5;
}

.button-form:hover .icon {
    stroke: #4f46e5;
}

.button-form:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5);
}
    .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    }