
.form .container-info {
    margin:2.5rem 0;
    padding-bottom:1rem;
    border-bottom: 1px solid #6666665d;
}


.form .container-info p {
    padding-bottom:1rem;
    margin-bottom:0.75rem;
}

.form .container-info .container-title {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.form .container-btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;

}



.form .container-info label {
   position:relative;
   bottom:3px;
    margin-right:1rem;
}

.form .container-btn-submit .submit {
    padding: 0.25rem 1rem;
    margin: 6px;
    font-size: 15px;
    color: #666;
    background-color: #d1d1d12e;
    border: 1px solid #666;
    border-radius: 5px;
}



#form-response{
    display:flex;
    justify-content:center;
    align-items:center;
}

.success-message, .alert-message {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-weight:600;
    margin: 1rem 0;
}

.success-message{
    color:#46ade9;
}

.alert-message {
    color:#FFC100;
}

.img-response {
    height:32px;
    width:32px;
}

.form .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.form .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.form .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.form .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.form .switch input:checked + .slider {
  background-color: #2196F3;
}

.form .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.form .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.form .slider.round {
  border-radius: 34px;
}

.form .slider.round:before {
  border-radius: 50%;
}

