    /*Send Button*/
    
    .sendButton {
        width: fit-content;
        margin: auto;
        font-size: 110%;
        background: linear-gradient(-45deg, #ffa63d, #ff3d77, #338aff, #3cf0c5);
        background-size: 400%;
        padding: 5px 15px 5px 15px;
        border-radius: 50px;
        box-shadow: 4px 4px 0 0px #ffc107;
        text-shadow: 1px 1px 2px black;
        -webkit-animation: anime 16s linear infinite;
        animation: anime 16s linear infinite;
        font-weight: bolder;
        border-color: transparent;
    }
    
    .sendButton:hover {
        box-shadow: 0 0 #ffc107;
        text-decoration: none;
        color: white;
    }
    
    @-webkit-keyframes anime {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    @keyframes anime {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    /*Form*/
    
    .boxstyle {
        border-radius: 50px;
        border-color: #ffa63d #ff3d77 #338aff #3cf0c5;
        border-width: 3px;
    }
    
    .boxstyleMessage {
        border-radius: 25px;
        border-color: #ffa63d #ff3d77 #338aff #3cf0c5;
        border-width: 3px;
    }
    /*text*/
    
    .link {
        background: linear-gradient(#010470, #000AFF);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }