﻿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 {
    border: none;
    -webkit-text-fill-color: black;
    -webkit-box-shadow: 0 0 0px 1000px #F4F4F4 inset;
    transition: background-color 5000s ease-in-out 0s;
}

html, body {
    height: 100%;
    padding: 0%;
    margin: 0%;
}

.inputContainer {
    width: 320px;
    height: 50px;
    background: #F4F4F4;
    padding: 15px;
    border-radius: 5px;
}

.errorContainer {
    width: 320px;
    height: 50px;
    background: #F9EBEA;
    padding: 15px;
    border-radius: 5px;
    border: 2px solid #C0392B;
}

input {
    outline: none;
    font-size: 15px;
    color: #1C1C1C;
    border: none;
    width: 250px;
    display: inline-block;
    background: transparent;
    letter-spacing: 1px;
    margin-left: 5px;
}

.btn {
    width: 320px;
    height: 50px;
    font-size: 16px;
}

.contenedorFull {
    background-image: url('../imagenes/fullscreen.jpg');
    height: 100%;
    background-position: end;
    background-repeat: no-repeat;
    background-size: cover;
}

.item {
    width: 400px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.15);
    text-align: center;
    /*border-radius: 15px;*/
    height: 500px;
    padding: 40px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}

@media only screen and (max-width: 900px) {
    .contenedorFull {
        background-image: url('../imagenes/loginmobileJJ.jpg');
    }

    .item {
        width: 320px;
        padding: 20px;
    }

    .inputContainer {
        width: 280px;
        padding: 15px;
    }

    .errorContainer {
        width: 280px;
        padding: 15px;
    }

    input {
        width: 200px;
    }

    .btn {
        width: 280px;
    }
}

* {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


.intro-div {
    margin: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
}

.container-div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}



.blue {
    color: #0288D1;
}

h1 {
    font-size: 60px;
    font-weight: 200;
}

.btn-login {
    outline: none;
    height: 60px;
    text-align: center;
    width: 250px;
    border-radius: 4px;
    /*background: transparent;*/
    background-color: black;
    border: 2px solid #fff;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-login:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        letter-spacing: 4px;
    }

.btn-primary {
    outline: none;
    height: 60px;
    text-align: center;
    width: 250px;
    border-radius: 4px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .btn-primary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        letter-spacing: 4px;
    }

.form-control2 {
    background-color: #fff;
    color: #626567;
    border-radius: 4px;
    width: 250px;
    margin-left: 10%;
    margin-right: 10%;
}


* {
    font-family: 'Roboto', sans-serif;
}

:root {
    --input-padding-x: 1.5rem;
    --input-padding-y: 0.75rem;
}

.login,
.image {
    min-height: 100vh;
}

.bg-image {
    background-image: url("../imagenes/fullscreen.jpg");
    background-size: cover;
    background-position: center;
}

.login-heading {
    font-weight: 300;
}



.form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

    .form-label-group > input,
    .form-label-group > label {
        padding: var(--input-padding-y) var(--input-padding-x);
        height: auto;
    }

    .form-label-group > label {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        margin-bottom: 0;
        /* Override default `<label>` margin */
        line-height: 1.5;
        color: #495057;
        cursor: text;
        /* Match the input under the label */
        border: 1px solid transparent;
        border-radius: .25rem;
        transition: all .1s ease-in-out;
    }

    .form-label-group input::-webkit-input-placeholder {
        color: transparent;
    }

    .form-label-group input:-ms-input-placeholder {
        color: transparent;
    }

    .form-label-group input::-ms-input-placeholder {
        color: transparent;
    }

    .form-label-group input::-moz-placeholder {
        color: transparent;
    }

    .form-label-group input::placeholder {
        color: transparent;
    }

    .form-label-group input:not(:placeholder-shown) {
        padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
        padding-bottom: calc(var(--input-padding-y) / 3);
    }

        .form-label-group input:not(:placeholder-shown) ~ label {
            padding-top: calc(var(--input-padding-y) / 3);
            padding-bottom: calc(var(--input-padding-y) / 3);
            font-size: 12px;
            color: #777;
        }

.div-footer {
    color: #7F8C8D;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 5px;
}
