* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body{
  background: url(../img/bg.jpg);
  -webkit-background-size:cover;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 650px) {
  body {
    background: url(../img/bgm.jpg);
  }
}

.contenedor .form .form-header .form-title {
  font-weight: normal;
  font-family: sans-serif;
  color: chocolate;
  text-align: center;
  padding: 14px 0;
}

.contenedor .form .form-header .form-title span {
  color: #fff;
}

.contenedor .form {
  background: rgba(0,0,0,.6);
  width: 90%;
  max-width: 650px;
  margin: auto;
  padding: 5px 35px;
  margin-top: 30px;
  padding-bottom: 30px;
  border-radius:  3px;
}

.contenedor .form .form-label {
  display: block;
  color: #ff851b;
  font-size: 16px;
  font-family: sans-serif;
	position: relative;
}

.contenedor .form .form-input, .form-textarea {
  background: rgba(0,0,0,.7);
  border: none;
  outline: none;
  border-bottom: 2px solid #ff851b;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  font-family: sans-serif;
}

.contenedor .form .form-textarea {
  resize: vertical;
  max-height: 250px;
  min-height: 50px;
}

.contenedor .form .form-input, .form-select {
  background: rgba(0,0,0,.7);
  border: none;
  outline: none;
  border-bottom: 2px solid #ff851b;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  font-family: sans-serif;
}

.contenedor .form .btn-submit {
  width: 100%;
  font-family: sans-serif;
  outline: none;
  background: #ff851b;
  font-size:  16px;
  border: none;
  color: #fff;
  padding: 15px 0;
  cursor: pointer;
  transition: all .5s ease;
}

.contenedor .form .btn-submit:hover {
  background: #f29718;
}

.tab {
  float: none;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color:  #f29718; /* #f1f1f1; */
  padding: 2px 0;
  background-size: cover;
}
  
/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #fff;
}
  
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: rgba(0,0,0,.7);
}
  
/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}
  
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
  border-top: none;
}

.imagenqr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-button {
  position: absolute;
  top: 1px;
  left: 1px;
}