﻿.button1 {
    width: fit-content;
    display: flex;
    padding: .6em 1rem;
    cursor: pointer;
    gap: 0.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33, #de6f3d, #cc3f47, #aa2068, #880088) no-repeat;
    background-size: 300%;
    color: #fff;
    border: none;
    background-position: left center;
    box-shadow: 0 30px 10px -20px rgba(0, 0, 0, .2);
    transition: background .3s ease;
    align-items: center;
}

    .button1:hover {
        background-size: 320%;
        background-position: right center;
    }

        .button1:hover svg {
            fill: #fff;
        }

    .button1 svg {
        width: 23px;
        fill: #f09f33;
        transition: .3s ease;
    }









/* From Uiverse.io by eirikvold */
.button2 {
    font-family: inherit;
    /* font-size: 18px; */
    background: linear-gradient(to bottom, #4dc7d9 0%, #66a6ff 100%);
    color: white;
    padding: 0.4em .9em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

    .button2:hover {
        transform: translateY(-3px);
        box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    }

    .button2:active {
        transform: scale(0.95);
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .button2 span {
        display: block;
        margin-left: 0.4em;
        transition: all 0.3s;
    }

    .button2 svg {
        width: 18px;
        height: 18px;
        fill: white;
        transition: all 0.3s;
    }

    .button2 .svg-wrapper2 {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        margin-right: 0.5em;
        transition: all 0.3s;
    }

    .button2:hover .svg-wrapper2 {
        background-color: rgba(255, 255, 255, 0.5);
    }

    .button2:hover svg {
        transform: rotate(45deg);
    }







/* From Uiverse.io by 0xnihilism */
.brutalist-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 169px;
    height: 60px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    border: 3px solid #fff;
    outline: 3px solid #000;
    box-shadow: 6px 6px 0 #00a4ef;
    transition: all 0.1s ease-out;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

    .brutalist-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255, 255, 255, 0.8), transparent );
        z-index: 1;
        transition: none;
        /* Initially hide the pseudo-element */
        opacity: 0;
    }

@keyframes slide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.brutalist-button:hover::before {
    /* Show the pseudo-element on hover */
    opacity: 1;
    animation: slide 2s infinite;
}

.brutalist-button:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 #000;
    background-color: #000;
    color: #fff;
}

@keyframes slide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.brutalist-button:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0 #00a4ef;
    background-color: #fff;
    color: #000;
    border-color: #000;
}

/* Rest of the CSS remains the same */

.ms-logo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    flex-shrink: 0;
    transition: transform 0.2s ease-out;
    position: relative;
    z-index: 1;
}

.brutalist-button:hover .ms-logo {
    transform: rotate(-10deg) scale(1.1);
}

.brutalist-button:active .ms-logo {
    transform: rotate(10deg) scale(0.9);
}

.ms-logo-square {
    width: 100%;
    height: 100%;
}

    .ms-logo-square:nth-child(1) {
        background-color: #f25022;
    }

    .ms-logo-square:nth-child(2) {
        background-color: #7fba00;
    }

    .ms-logo-square:nth-child(3) {
        background-color: #00a4ef;
    }

    .ms-logo-square:nth-child(4) {
        background-color: #ffb900;
    }

.button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: transform 0.2s ease-out;
    position: relative;
    z-index: 1;
}

.brutalist-button:hover .button-text {
    transform: skew(-5deg);
}

.brutalist-button:active .button-text {
    transform: skew(5deg);
}

.button-text span:first-child {
    font-size: 11px;
    text-transform: uppercase;
}

.button-text span:last-child {
    font-size: 16px;
    text-transform: uppercase;
}










/* From Uiverse.io by Yaya12085 */
.button4 {
    max-width: 320px;
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 0.875rem 72px 0.875rem 1.75rem;
    background-color: #039be5;
    background-image: linear-gradient(to top right, #039be5, #29b6f6);
    color: #ffffff;
    
    white-space: nowrap;
    line-height: 1.25rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    gap: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all 0.6s ease;
}

    .button4 span {
        background-color: rgb(3 155 229);
        display: grid;
        position: absolute;
        right: 0;
        place-items: center;
        width: 3rem;
        height: 100%;
    }

        .button4 span svg {
            width: 1.5rem;
            height: 1.5rem;
        }

    .button4:hover {
        box-shadow: 0 4px 30px rgba(4, 175, 255, 0.1), 0 2px 30px rgba(11, 158, 255, 0.06);
    }








/* From Uiverse.io by Madflows */
.button5 {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #3d3a4e;
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
}

    .button5:hover::before {
        transform: scaleX(1);
    }

.button-content5 {
    position: relative;
    z-index: 1;
}

.button5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient( 82.3deg, rgba(150, 93, 233, 1) 10.8%, rgba(99, 88, 238, 1) 94.3% );
    transition: all 0.475s;
}














