/* BUTTONS LAYOUT */





.btn-connect {
    width: 180px;
    height: 40px;
    padding: 0;
    border: 2px solid #2C123B;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #2C123B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-connect:hover {
    background: #2C123B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 18, 59, 0.3);
}


/* small */
.btn-small {
    width: 200px;
    height: 40px;
    padding: 0;
    border: 0px solid #2C123B;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgb(242, 240, 251);
    color: #7f76a1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-small:hover {
    background: #2C123B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 5px rgba(44, 18, 59, 0.3);
}
