﻿/*@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap');*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: none;
    transition: background-color 5000s ease-in-out 0s;
}

.buttonsContainer{
    display:flex;
    flex-direction:row;
}

.buttonsContainerChild {
    display: flex;
    flex:1;
}

.loginBg {
    display:flex;
    justify-content:flex-end;
    align-items:center;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover;
    background-image: url("../imagenes/login/login.png");
}

.loginCard{
    width:350px;
    height:auto;
    padding:30px;

}
.logo {
    width : 150px;
}
.title {
    font-size: 16px;
    font-family: sans-serif;
    text-align: center;
    color: #727478;
}
.label {
    font-family: sans-serif;
    font-weight: bold;
    margin-bottom: 0px;
    font-size:15px;
}
.inputLogin {
    width: 100%;
    height: 40px;
    outline: none;
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #d1ccc0;
    text-decoration: none;
    font-family: sans-serif;
    margin-bottom: -5px;
}
.checkBox {
    margin: 40px 0px;
    font-family: sans-serif;
}
.notificationTxt{
    width:100%;
    text-align:center;
}
.btnLogin {
    text-align: center;
    width: 100%;
    background-color: #C0392B;
    padding: 9px 13px;
    border: 0px;
    text-decoration: none;
    outline: none;
    font-size: 15px;
    color: white;
    cursor:pointer;
}
.btnRegister {
    text-align: center;
    width: 100%;
    background-color: #343244;
    padding: 9px 13px;
    border: 0px;
    text-decoration: none;
    outline: none;
    font-size: 15px;
    color: white;
    cursor: pointer;
}
.btnLogin:hover {
    background-color: #d1ccc0;
    color: black;
}

.btnRegister:hover {
    background-color: #d1ccc0;
    color: black;
}

@media (max-width:1000px) {


    .buttonsContainer {
        flex-direction: column;
    }

    .loginBg {
        justify-content: center;
        align-items:flex-start;
        padding-top:60px;
        background-image: url("../imagenes/login/loginMobile2.png");
    }
    .loginCard {
        width: 90%;
        height: auto;
        padding: 30px;
    }
    .logo {
        width: 450px;
    }
    .title {
        margin-top:70px;
        font-size: 50px;
    }
    .label {
        font-size:50px;
        margin-top: 50px;
        margin-bottom:0px;
    }

    .inputLogin {
        font-size:50px;
        height: 100px;
        border-bottom: 2px solid #d1ccc0;
        margin-bottom: -5px;
    }

    .checkBox {
        width: 40px;
        height: 40px;
        margin: 100px 0px;
    }

    .btnLogin {
        margin-top:70px!important;
        padding: 30px;
        font-size:50px;
    }

    .btnRegister {
        margin-top: 20px !important;
        padding: 30px;
        font-size: 50px;
        margin-left:-10px;
    }
}