@import url(https://square-fonts-production-f.squarecdn.com/square-sans.min.css);

html {
    color: #151c1f;
    font-family: var(--square-sans-text);
    font-size: 16px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.animated-gradient {
    animation: animateBg 20s linear infinite;
    background-image: linear-gradient(
        90deg,
        #0c0c0c,
        #2b2b2b,
        #0c0c0c,
        #3d3c3c,
        #0c0c0c
    );
    background-size: 400% 100%;
}
@keyframes animateBg {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

body {
    height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: rgba(0, 0, 0, 0.55);
    font-family: var(--square-sans-text);
}

h1 {
    text-align: center;
}

button {
    font-family: var(--square-sans-text);
    margin: 0 auto 20px auto;
    background-color: #3374ff;
    padding: 12px 16px;
    color: #fff;
    border-radius: 8px;
    border: none;
}

button:focus {
    outline: none;
}

button:hover {
    cursor: pointer;
    filter: brightness(90%);
    -webkit-transition: all 30ms ease-in-out;
    -moz-transition: all 30ms ease-in-out;
    -ms-transition: all 30ms ease-in-out;
    -o-transition: all 30ms ease-in-out;
    transition: all 30ms ease-in-out;
}

input:focus {
    border: none;
    outline: none;
}

input {
    border: none;
    outline: none;
    height: 48px;
    width: 100%;
}

.logo{
    width: 100%;
    height: 48px;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

#google-pay-button ,
#apple-pay-button{
    display: none !important ;
}
#google-pay-button:has(div) ,
#apple-pay-button:has(div){
    display: block !important ;
}
