.c-btn-outlined {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: white;
    font-weight: bold;
    background: none;
    border: 1px solid rgb(122, 4, 190);
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -o-transition: background 0.3s;
}

.c-btn-outlined[disabled] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: black;
    background: #c7c6c5;
    border: 1px solid rgba(57, 56, 56, 1);
}

.c-btn-outlined:hover:not([disabled]) {
    background: #7a04be;
    color: #d1f7ff;
    border: 1px solid rgb(122, 4, 190);
}

.c-btn-filled {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: white;
    background: rgba(57, 56, 56, 1);
    border: none;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -o-transition: background 0.3s;
}

.c-btn-filled:hover:not([disabled]) {
    background: #ec167f;
}

.c-btn-text {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: white;
    background: none;
    border: none;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    -o-transition: color 0.3s;
}

.c-btn-text:hover:not([disabled]) {
    color: #7a04be;
}

.c-btn-gradient-filled {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: white;
    background: linear-gradient(270deg, #7a04be 0%, #3d43b4 100%);
    border: none;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.c-btn-gradient-filled:hover:not([disabled]) {
    background: linear-gradient(270deg, #3d43b4 0%, #7a04be 100%);
    box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
    -webkit-box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
    -moz-box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
}

.c-btn-join-filled {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.17em;
    padding: 0.5em 1.5em;
    color: white;
    background: linear-gradient(270deg, #7a04be 0%, #3d43b4 100%);
    border: none;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

.c-btn-join-filled:hover:not([disabled]) {
    background: linear-gradient(270deg, #3d43b4 0%, #7a04be 100%);
    box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
    -webkit-box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
    -moz-box-shadow: -1px 1px 43px 4px rgba(122,4,190,1);
}
