﻿:root {
    --tpmexBlue: #143C6A;
}

body {
    overflow: hidden;
}

.hidden {
    display: none;
}

.login {
    height: calc(100vh - 25px);
    overflow: hidden;
}

.left {
    width: 100%;
    height: calc(100vh - 25px);
    overflow: hidden;
    z-index: -101;
    position: absolute;
}

    .left .logo {
        width: 35%;
        height: calc(100%);
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        margin-top: -60px;
    }

.logo img {
    max-width: 50%;
}

.right {
    width: 100%;
    height: calc(100vh - 25px);
    overflow: hidden;
    position: absolute;
    right: 0;
    padding-left: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .right #fondo {
        z-index: -100;
        height: calc(100vh - 25px);
        position: absolute;
        right: 0;
        margin: 0;
        clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    }

    .right #logo {
        z-index: -99;
        max-height: 100px;
        position: absolute;
        right: 0;
        bottom:0;
        margin: 0;
    }

.header {
    background-color: var(--tpmexBlue);
    color: white;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50%;
}

    .header h3 {
        margin: 0;
        font-family: 'Montserrat';
    }

        .header h3.div {
            border-left: 2px solid white;
            padding-left: 10px;
            margin-left: 10px;
        }

    .header img {
        max-height: 50px;
    }

/*#region footer*/
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1F9BDE;
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 2px 0;
    font-family: sans-serif;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    line-height: 13px;
}

    footer p {
        margin: 0;
        padding: 0;
    }
/*#endregion*/

.loginBox {
    width: 455px;
}

    .loginBox h4 {
        background-color: var(--tpmexBlue);
        border-radius: 20px 20px 0 0;
        color: white;
        padding: 10px 26px;
    }

.loginData {
    border-radius: 0 0 20px 20px;
    background-color: rgba(255,255,255,0.8);
    padding: 0 5%;
}

.loginBox input[type=button] {
    background-color: var(--tpmexBlue);
    border-color: var(--tpmexBlue);
    margin: 1rem 0;
}

    .loginBox input[type=button]:hover {
        background-color: #007bff;
        border-color: #007bff;
    }

.loginBox p {
    font-weight: 500;
    height: 24px;
    margin: 1rem 0;
}

.loginDiv {
    height: 63px;
}

.error {
    color: red;
}
