﻿* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
}

.FondoLogin {
    background-image: url('../img/fondo_Cuera.png');
    background-attachment: fixed;
    background-size: cover;
}

.FondoInicio {
    background-image: url('../img/fondo_Cuera_2.png');
    background-attachment: fixed;
    background-size: cover;
}

.form {
    background: rgba(255, 255, 255, .90);
    margin: auto;
    margin-top: 4rem;
    width: 90%;
    max-width: 350px;
    padding: 1.5em 3em;
    border-radius: 15px;
    box-shadow: 20px 20px 50px rgb(0,0,0,0.5);
    backdrop-filter: blur(5px);
    text-align: center;
}

.form_title {
    font-size: 1.5rem;
    margin-bottom: .5em;
}

.form_container {
    margin-top: 1em;
    display: grid;
    gap: 2.5em;
}

.form_group {
    position: relative;
    --color: #0000007e;
}

.form_input {
    width: 100%;
    background: none;
    color: #000000;
    font-size: 1rem;
    font-family: Roboto;
    padding: .6em .3em;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color);
}

.form_label {
    color: var(--color);
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 12pt;
    transform: translateY(10px);
    transition: transform .5s, color .3s;
}

.form_line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(22,71,115);
    transform: scale(0);
    transform: left bottom;
    transition: transform .4s;
}

.form_submit {
    background-color: rgb(22,71,115);
    color: #ffffff;
    font-weight: 350;
    font-size: 1rem;
    font-family: Roboto;
    padding: .8em 0;
    border: none;
    border-radius: .5em;
}

.form_input:focus + .form_label {
    transform: translateY(-12px) scale(.7);
    transform-origin: left top;
}

.form_input:focus + .form_label,
.form_input:not(:placeholder-shown) + .form_label {
    transform: translateY(-12px) scale(.7);
    transform-origin: left top;
    color: rgb(22,71,115);
}


.form_input:focus ~ .form_line,
.form_input:not(:placeholder-shown) ~ .form_line {
    transform: scale(1);
}

.form_input:focus,
.form_input:not(:placeholder-shown) {
    color: #000000;
}

.provision {
    padding-top: 30px;
}

a:not([href]):not([tabindex]) {
    text-decoration: underline;
    color: #045cad;
}

.botones {
    background: rgb(22,71,115);
    border-radius: 6px;
    color: white !important;
    text-align: center;
}

.botonesHover {
    color: rgb(128,128,128) !important;
}

footer {
    background: rgb(224,224,224);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 30px;
    text-align: center;
}

#Avisos {
    margin-left:82%;
}

.borde {
    border-radius: 5px;
}

.bordePopUp {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px
}