.important-button {
    width: 100%;
    height: 56px;
    background-color: transparent;
    border: solid 2px $white;
    color: $white;
    font-weight: bold;
    font-size: 24px;
    padding: 10px 40px;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s;

    &:hover {
        background-color: white;
        color: $primary-dark;
    }

    &:active {
        background-color: $primary-light;
    }
}
