﻿
:root {
    --color_fondo: #fff;
    --color_fondo_sec: #ee5340;
    --color_principal: #12385D;
    --color_texto: #3B3B3B;
    --color_texto_alerta: #D82414;
    --color_texto_green: #01A254;
    --border_radius_min: 12px;
    --border_radius_max: 36px;
    --master_nav_width: 200px;
    --master_cmr_height: 100px;
}

html {
    font-size: 10px;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", "montserrat", sans-serif;
    background-color: var(--color_fondo);
    /*text-decoration: none;
    border-collapse: collapse;*/
    font-size: 1.6rem;
    color: var(--color_texto); /* Color de la letra*/
}

/* Home */


.home_logo {
    margin-top: 60px;
    margin-bottom: 20px;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.home_logo_img {
    width: 350px;
}


.home_layout {
    width: 100%;
    min-height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.home_table {
    width: 1160px;
    min-width: 1160px;
    height: 573px;
    min-height: 573px;
    box-sizing: border-box;
    border-radius: var(--border_radius_max);
    box-shadow: 0 0 100px -5px rgba(0, 0, 0, .25);
    overflow: hidden;
}






.home_img {
    opacity: .4;
    border-end-end-radius: var(--border_radius_max);
    border-start-end-radius: var(--border_radius_max);
    width: 100%;
}

.home_td_img {
    border-collapse: collapse;
    position: relative;
}

.home_div_user {
    margin: auto;
    box-sizing: border-box;
    width: 330px;
}

.htitle {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 6px;
}



.home_col_1 {
    width: 6px;
    background-color: var(--color_fondo_sec);
    height: 100%;
}

.home_col_2 {
    width: 110px;
}



.home_txt_div {
    width: 330px;
}

.home_txt, .txt_big {
    border: 2px var(--color_principal) solid;
    border-radius: var(--border_radius_min);
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.home_txt_err {
    background: pink;
    opacity: .6;
}

.home_btn_ingresar_div {
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.home_btn_ingresar {
    background-color: var(--color_fondo_sec);
    color: white;
    border-radius: var(--border_radius_min);
    display: inline-block;
    padding: 10px;
    width: calc(100% - 10px);
    /*text-decoration: none;*/
    font-weight: bold;
    cursor: pointer;
}

.home_btn_txt_div {
    text-align: center;
    margin-bottom: 10px;
}

.home_btn_txt {
    color: var(--color_principal);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.home_img_title {    
    top: 20px;
    left: 20px;
    position: absolute;
    color: var(--color_principal);
    font-size: 24px;
    font-weight: 800;
}

.label_error {
    color: #D82414;
    font-weight: bold;
    font-size: 1.8rem;
}

