body{background:url(../images/bg-home.jpg)center center fixed no-repeat;background-size:cover;}
.container-fluid{margin-top:-50px;}
label{color:black;}
.form-control{color:black;border:1px solid rgb(138, 143, 143);font-size:16px;font-weight:400;}
.obrigatorio{color:rgb(226, 15, 15);}

#campo-costum{width:100%;height:35px;border:0;border-bottom:2px solid gray;}
.input-pessoal{width:20px;}

.desactivo{background:rgb(241,85,74);}

.top-default-color{background: linear-gradient(to bottom left, #1e61a5, #2d96ff);}

/*personalizando o input type file*/
#add_file{position:relative;margin:auto;}
#ficheiro{position:absolute;top:0px;left:0px;right:0px;bottom:0px;width:100%;height:100%;opacity:0;}
#pre-image{box-shadow:0px 2px 18px gray;}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #31b82c;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #31b82c;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }