﻿.wechat {
    font-size: 38px;
    padding-left: 3px;
    border-radius: 10px;
}

    .wechat:hover {
        background: RGB(44,191,0);
        color: white;
    }

.facebook {
    font-size: 38px;
    padding-left: 3px;
    border-radius: 10px;
}

    .facebook:hover {
        color: darkblue;
        transform: scale(1.2);
    }

.whatsapp {
    font-size: 38px;
    padding-right: 3px;
    padding-left: 4px;
    padding-bottom: 2px;
    padding-top: 3px;
    border-radius: 10px;
}

    .whatsapp:hover {
        background: RGB(37,211,102);
        color: white;
    }

.instagram {
    font-size: 38px;
    padding-left: 5px;
    border-radius: 10px;
    padding-top: 3px;
    padding-bottom: 2px;
}

    .instagram:hover {
        background: radial-gradient(circle farthest-corner at 32% 106%, rgb(255, 225, 125) 0%, rgb(255, 205, 105) 10%, rgb(250, 145, 55) 28%, rgb(235, 65, 65) 42%, transparent 82%), linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
        color: white;
    }


.Form {
    width: 480px;
    height: 34px;
    border-radius: 8px;
    border: 2px solid lightslategray;
    background: #ecf0f3;
    font-size: 16px;
    color: #434054;
    font-weight: 700;
}

    .Form:hover {
        transform: scale(1.1);
    }

    .Form::placeholder {
        text-transform: uppercase;
        padding-left: 10px;
        padding-top: 10px;
        font-size: 16px;
        letter-spacing: 4px;
        color: #434054;
        font-weight: lighter;
    }

.MsgBtn {
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    border: none;
    color: #373737;
    letter-spacing: 4px;
    padding: 10px 20px;
}

    .MsgBtn:hover {
        color: #ecf0f3;
    }

.submit {
    position: relative;
    display: inline-block;
    color: #373737;
    background: #ecf0f3;
    overflow: hidden;
    margin-top: 10px;
}

.box {
    display: inline-block;
    overflow: hidden;
}

.submit:hover {
    background-color: lightslategray;
    border-radius: 5px;
}

.submit span, .box span {
    position: absolute;
    display: block;
}

    .submit span:nth-child(1), .box span:nth-child(1) {
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #373737);
        animation: btn-anim1 1s linear infinite;
    }

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,100% {
        left: 100%;
    }
}

.submit span:nth-child(2), .box span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #373737);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,100% {
        top: 100%;
    }
}

.submit span:nth-child(3), .box span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #373737);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,100% {
        right: 100%;
    }
}

.submit span:nth-child(4), .box span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #373737);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,100% {
        bottom: 100%;
    }
}
