/*login*/
.svg-responsivo {
    width: 100%;
    height: auto;
    max-width: 50px;
}

.body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: sans-serif;
}

.tarjeta {
  border: 1px solid #ddd;
  border-top: 4px solid #F54927; /* naranja */
  border-radius: 6px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pie{
    position: fixed;
    width:100%;
    height:4rem;
    bottom:0px;
    background-color:#ffa18f;
    text-align:center;
    z-index:0;
  }
.login-box {
    width: 320px;
    height: 400px;
    background: #F4F4F4;
    color: #000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 20px 30px;
}

.login-box .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.login-box h1 {
    margin: 0;
    padding: 0 0 20px;
    text-align: center;
    font-size: 22px;
}

.login-box label {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box p {
    margin: 0;
    padding: 0;
    font-weight: bold;
    display: block;
}

.login-box input {
    width: 100%;
    margin-bottom: 20px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
    height: 40px;
    color: #000;
    font-size: 18px;
}

#password_clave::placeholder {
    color: darkgrey;
}

.login-box button[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    padding: 5px 15px;
    background: #00356F;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
}

.boton-ver {
    border: none;
    background: #F4F4F4;
}

.icon {
    color: #00356F;
}

.login-box button[type="submit"]:hover {
    cursor: pointer;
    background: #fff;
    color: #00356F;
    border: solid 2px #00356F;
}

.login-box a {
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: darkgrey;
}

.login-box a:hover {
    color: #fff;
}