html {
    overflow: hidden !important;
}

html,
body {
    margin: 0;
    padding: 0;
}

:root {
    --color1: linear-gradient(180deg, rgb(47, 47, 47), rgb(25, 25, 25));
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.cardlogin {
    width: 500px;
    max-width: 90%;
    margin: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgb(47, 47, 47), rgb(25, 25, 25));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
    position: absolute;
    right: 10px;
    top: -50px;
}

.recuperar2 {
    display: none;
}

.cardlogin .text-muted {
    bottom: 10px;
    right: 25px;
    opacity: 0.8;
}

.cardlogin .text-muted h6 {
    font-size: 9pt;
}

.cardlogin .btn-warning {
    width: 150px !important;
}

.success-message {
    display: none;
    color: green;
    margin-top: 15px;
}

.error-message {
    display: none;
    color: red;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {
    .logo {
        top: -45px;
        right: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        width: 100%;
        gap: 10px;
    }

    .logo img {
        width: 100px;
    }

    .cardlogin {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    .cardlogin .btn-warning {
        width: 100% !important;
        margin-top: 30px;
    }

    .cardlogin .recuperar1 {
        display: none;
    }

    .recuperar2 {
        display: block;
        margin-top: -30px;
    }

    .cardlogin .text-muted {
        bottom: -10px;
        width: 100%;
        left: 0;
        text-align: center;
    }

    .cardlogin .text-muted h6 {
        font-size: 11pt;
    }
}

.cabecera {
    height: 60px;
    background: var(--color1);
    border-radius: 15px;
}

#videoPreview {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 170px;
    border: 2px solid #575757;
    border-radius: 15px;
    overflow: clip;
    box-sizing: border-box;
    margin-top: 15px;
    font-size: 40pt;
    color: #575757;
}

#cont-videos {
    width: 100%;
    height: calc(100vh - 300px);
    max-height: (100vh - 300px);
    overflow-y: auto;
    border-radius: 8px;
    border: 2px solid #575757;
}

.bg-warning {
    color: black !important;
}