﻿body {
    background: linear-gradient(133deg, rgba(150,150,150,1) 0%, rgba(221,200,200,1) 46%, rgba(220,169,169,1) 100%);
    padding: 0 20px 0 20px;
}

.ContenedorStyles {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.CardStyles {
    width: 900px;
    height: 550px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.1);
}

.CardImageStyles {
    background-image: url("/Imagenes/Login-Left.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px 0 0 10px;
}

.CardRightStyles {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.LogoEmpresa {
    margin: 10px 0;
}

.CardItemsStyles {
    width: 330px;
    box-sizing: border-box;
}

.Css-Login-Button {
    border: none;
    outline: none;
    height: 45px;
    border-radius: 5px;
    transition: .4s;
    background: linear-gradient(133deg, rgba(203,105,105,1) 6%, rgba(194,132,132,1) 77%);
    color: #fff;
}

.TogglePasswordStyles {
    padding: 2px 4px;
    margin: 0px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #6c757d;
}

    .TogglePasswordStyles:hover {
        color: #000;
    }

@media only screen and (max-width: 450px) {
    .CardStyles {
        width: 100%;
    }

    .ContenedorStyles {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        margin-top: 35px;
    }

    .CardImageStyles {
        border-radius: 10px 10px 0 0;
    }
}

@media (min-width: 451px) and (max-width: 768px) {

    .CardStyles {
        width: 100%;
    }

    .ContenedorStyles {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .CardImageStyles {
        border-radius: 10px 10px 0 0;
    }
}

@media (min-width: 769px) and (max-width: 1020px) {

    .ContenedorStyles {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .CardStyles {
        width: 700px;
        height: 550px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.1);
    }
}