﻿#token-page {
    margin-top: 15vh;
    margin-bottom: 15vh;
}

#principal-prom {
    margin-top: 15vh;
    margin-bottom: 6vh;
}


.container-principal-prom {
    width: 35%;
    background: white;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



.container-prom {
    display: flex;
}

input {
    border: none;
    height: 50px;
    border-radius: 15px;
    margin-top: 5px;
    font-weight: 400;
    color: #1e22aa9e;
    background: #EBEBFB;
}

.img-prom {
    width: 45%;
    border-radius: 0 30px 30px 0px;
    margin-left: 7px;
}


.disclaimer-item {
    list-style-type: none;
    justify-content: center;
    display: flex;
    margin: 0 auto;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 1027px) and (max-width: 1440px) {
    .container-principal-prom {
        width: 50% !important;
    }
}


@media (max-width: 1024px) {
    .container-principal-prom {
        width: 90% !important;
    }

    .container-prom {
        display: block;
    }

    .img-prom {
        width: 85%;
        border-radius: 30px;
        margin-left: 7px;
        margin-bottom: 30px;
    }
}
