html {
    background-color: rgba(0,0,0,.8);
    background-image: url("../imatges/FincaGest_Fondo.png");
    background-repeat: no-repeat;
    background-position: center;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    width: 1020px;
    height: 850px;
    margin: auto;
    display: block;
    margin-top: 30px;
}
form label {
    display: inline-block;
    width: 100px;
    text-align: right;
    font-weight: bold;
}
.msg_error {
    width: 100%;
    height: 50px;
    padding-top: 10px;
    color: red;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
}
/* Gestion peticio login en pantalla MODAL -----------------------------------*/

.modal_login_contingut {
  background-color: rgb(255, 255, 255);
  width:400px;
  padding: 10px 10px;
  margin: 20% auto;
  border-radius: 5px;
  position: relative;
  border: solid 3px #01324d;
}
.modal_login{
  background-color: rgba(0,0,0,.7);
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:1;
  pointer-events:auto;
  transition: all 1s;
  text-align: center;
}
.login_text{
    font-size: 20px;
    margin: 5px 5px 15px 5px;
}
input {
    height: 35px;
    width: 90%;
    margin: 5px;
    border-radius: 5px;
    border: 1px solid rgb(201, 200, 200);
    background-color: #E8F0FE;
    padding-left: 7px;
}
.login_butons {
    margin: 5px;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 93%;
    background-color: #b9b5b5;
    border: 1px solid #616163;
    color: white;
}
.login_butons:hover {
    background-color: #086600;
    border: 1px solid #043000;
}