body {
    font-family: arial;
    width: 700px;
    height: 650px;
    margin: auto;
    display: block;
    border-radius: 16px;
    margin-top: 30px;
}
form label {
    display: inline-block;
    width: 200px;
    text-align: right;
    font-weight: bold;
}
h2 {
    color: #4b7d98;
}
.msg_error {
    width: 100%;
    height: 50px;
    padding-top: 10px;
    color: red;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

input {
    height: 35px;
    width: 200px;
    margin: 10px;
    border-radius: 5px;
}
.login_butons {
    margin: 15px 5px 15px 5px;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    border-color: #000066;
    cursor: pointer;
}
.login_butons:hover {
  background-color: #4b7d98;
  color: #000066;
}

/* Gestion registre en pantalla MODAL -----------------------------------*/

.modal_registre_contingut {
  /* background-color: rgba(255,255,255,.7); */
  background-color: #b3b3ff;
  width: 440px;
  padding: 10px 10px;
  margin: 3% auto;
  border-radius: 15px;
  border: 2px solid black;
  position: relative;
  overflow-y: auto;
}
.modal_registre{
  /* background-color: rgba(0,0,0,.7); */
  background-color: #d9d9d9;
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:1;
  pointer-events:auto;
  transition: all 1s;
  text-align: center;
  overflow-y: auto;
}
.registre_text{
    font-size: 20px;
    margin: 5px 5px 15px 5px;
}
.reg_p1_img {
    float:left;
    width: 30%;
    height: 80px;
}
.reg_p1_sel {
    float:right;
    width: 70%;
    height: 80px;
}
.text_reg_p1_sel {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}
