﻿.custom-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;    
}

.radio-tile {
    position: relative;
    flex: 1 1 260px;
    padding: 10px;
    border: 2px solid #d0d7e0;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    min-width: 75px;
    max-width: 75px;

}

input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-tile:hover {
    border-color: #a0b0c0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

input[type="radio"]:checked + .radio-tile {
    border-color: #0066ff;
    background: #f0f6ff;
    box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}

.icon {
    font-size: 25px;
    color: #777;    
    transition: all 0.3s;
}

input[type="radio"]:checked ~ .icon {
    color: #0066ff;
    transform: scale(1.15);
}

.text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
}

input[type="radio"]:checked ~ .text {
    color: #0066ff;
}

:root {
    --color-pri: #194d8f;
    /*--color-pri-D1: #a5abb1;
    --color-pri-D2: #969da4;
    --color-pri-D3: #78818a;*/
    --color-sec: #ef7c33;
    /*--color-sec-D1: #f5b084;
    --color-sec-D2: #ff8f4d;
    --color-sec-D3: #e0671f;*/
    --color-acento: #d22b24;
    --color-inactivo: #b0b7bb;
    --color-navbar: white !important;
    --color-ter: #b0b7bb;
    /*--color-navbar: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;*/
    --fuente-titulo: "Barlow Bold";
    --color-titulo: #6a737e;
    --fuente-texto: 'Barlow Regular';
    --fuente-nocorp: sans-serif;
    --color-texto: #6a737e;
    --color-star: #6a737e;
    /*--color-fondo: #fefcfa;*/
    --color-hover-tbl: white !important;
    --color-fondo: #fafafa !important;
}





.loading {
    
   /* top: 200px;
    position: fixed;
    margin-left: 0;
    //calc((100% - 256px) / 2);
    z-index: 99999;*/
    display: none;
   /* background-color: white;
    border-radius: 50%;
    opacity: 0.75;*/
}

}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: bliss-regular;
}

.container-fluid {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

.row {
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

.login-section {
    display: flex;
    width: 100%;
    height: 100vh;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    /*box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);*/
    height: 100%;
}

.login-container {
    position: relative;
    padding-top: 320px;
    text-align: center;
}

.logo {
    position: absolute;
    top: 0;
    left: 52%;
    transform: translateX(-50%);
    width: 400px;
    height: auto;
}

    .logo img {
        width: 100%;
        height: auto;
    }


.login-container h1 {
    color: var(--color-pri);
    margin-bottom: 20px;
    font-size: 24px;
}


.input-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

    .input-group .input-wrapper {
        position: relative;
    }

    .input-group input {
        width: 100%;
        padding: 10px 10px 10px 45px;
        border-radius: 95px;
        border: 1px solid var(--color-pri);
        font-size: 16px;
        color: #333;
        background-color: #fff;
    }

        .input-group input:focus {
            outline: none;
            border-color: var(--color-acento);
        }

    .input-group .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-pri);
        font-size: 16px;
    }

.login-btn {
    background-color: var(--color-pri);
    font-family: bliss-bold;
    color: #fff;
    border: none;
    padding: 10px;
    
    border-radius: 95px;
    cursor: pointer;
    font-size: 17px;
    width: 100%;
    margin: 20px auto;
    display: block;
}

    .login-btn:hover {
        background-color: #5e82b0;
    }



.forgot-password {
    margin-top: 10px; 
}

    .forgot-password a {
        color: var(--color-pri);
        text-decoration: none;
        font-size: 12px;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.bg-image {
    background: url('../images/back-02.png');
    background-size: cover;
    height: 100%;
}


@font-face {
    font-family: 'bliss-bold';
    src: url('../lib/tipografia/blisspro-bold - bliss pro - bold.ttf') format('truetype');
}
@font-face {
    font-family: 'bliss-regular';
    src: url('../lib/tipografia/blisspro - bliss pro - regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow Thin';
    src: url('../lib/tipografia/Barlow-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow Light';
    src: url('../lib/tipografia/Barlow-ExtraLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow Medium';
    src: url('../lib/tipografia/Barlow-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow Regular';
    src: url('../lib/tipografia/Barlow-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Barlow Bold';
    src: url('../lib/tipografia/Barlow-ExtraBold.ttf') format('truetype');
}

.fstp-thin {
    font-family: 'Barlow Thin' !important;
}

.fstp-light {
    font-family: 'Barlow Light' !important;
}

.fstp-medium {
    font-family: 'Barlow Medium' !important;
}

.fstp-regular {
    font-family: 'Barlow Regular' !important;
}

.fstp-bold {
    font-family: 'Barlow Bold' !important;
}

#titulo_log {
    font-family:bliss-bold;
}

.flags {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    margin-bottom: 50px;
}

    .flags input[type="radio"] {
        display: none;
    }

.flag-label {
    width: 45px;
    height: auto;
    padding: 3px;
    margin: 0 6px;
    cursor: pointer;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
    display: inline-block;
    /*box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);*/
    /*background-color: whitesmoke; 
    opacity: 0.6;*/

}

    .flag-label:hover {
        background-color: #f0f1f2;
        /*opacity: 1;*/
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    }

    .flag-label img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }

.flags input[type="radio"]:checked + .flag-label {
    /*background-color: #6a737e;*/
    /*opacity: 1;*/
    border: 1px solid var(--color-pri);
    cursor: not-allowed;
    pointer-events: none;
}

.flags input[type="radio"]:disabled + .flag-label {
    cursor: not-allowed;
    pointer-events: none;
    /*filter: grayscale(80%);*/
    /*opacity: 0.7;*/
}

.zoom-sm {
    position: relative;
    overflow: hidden;
}

.zoom-sm {
    display: block;
    transition: transform 0.2s ease;
}

    .zoom-sm:hover {
        transform: scale(1.3);
        z-index: 3;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Sombra para efecto de elevación */
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #e8edf3 inset !important;
    -webkit-text-fill-color: #333 !important;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border-radius: 95px !important;
}



.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: repeat; 
    color: #B0B7BB;
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
}


