﻿/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');*/
body {
    margin: 0px;
    padding: 0px;
    background-image: url('../images/fondo_trama.png');
    background-repeat: repeat;
    background-color: #3E1A46;
}

.certisur {
    cursor: pointer;
    bottom: 10px;
    /*position: absolute;*/
    right: 0;
    border: 0px;
    margin: 10px;
}

/* X-Small devices (portrait phones, less than 576px)*/
/* No media query for `xs` since this is the default in Bootstrap */
#divMain {
    max-width: fit-content;
}

.form-floating {
    width: 95%;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    #divMain {
        max-width: fit-content;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    #divMain {
        max-width: fit-content;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #divMain {
        max-width: 58%;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    #divMain {
        max-width: 48%;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    #divMain {
        max-width: 650px;
    }
}

.invalid-feedback {
    font-size: 0.9em;
    font-weight: bold;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px;
}

    .invalid-feedback ul {
        list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-exclamation-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
    }

.watermarked {
    position: relative;
}

    .watermarked:after {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: -10%;
        left: -10%;
        background-image: url("/images/test.png");
        background-size: 150px 50px;
        background-position: 30px 30px;
        background-repeat: no-repeat;
        opacity: 0.7;
        z-index: -1;
    }
