/* Devis Proformal front-office styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

.dp-quote-form{
  max-width: 420px;
  width: 100%;
  margin: 60px auto;
  padding: 40px 30px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
  font-family:'Montserrat',sans-serif;
}

.dp-quote-form h2{
  font-weight:600;
  font-size:24px;
  margin-bottom:24px;
  text-align:center;
  color:#132443;
}

.dp-quote-form .dp-field,
.dp-quote-form .dp-option{
  margin-bottom:18px;
}

.dp-quote-form label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#132443;
  font-weight:500;
}

.dp-quote-form input[type="text"],
.dp-quote-form input[type="email"]{
  width:100%;
  padding:12px 14px;
  border:1px solid #d5dce5;
  border-radius:8px;
  font-size:14px;
  outline:none;
  transition:border .25s;
}

.dp-quote-form input[type="text"]:focus,
.dp-quote-form input[type="email"]:focus{
  border-color:#132443;
}

/* Custom checkbox */
.dp-quote-form .dp-option input[type="checkbox"]{
  appearance:none;
  -webkit-appearance:none;
  width:20px;height:20px;
  border:2px solid #132443;
  border-radius:4px;
  margin-right:10px;
  position:relative;
  cursor:pointer;
}
.dp-quote-form .dp-option input[type="checkbox"]:checked{
  background-color:#132443;
}
.dp-quote-form .dp-option input[type="checkbox"]:checked:after{
  content:'';
  position:absolute;
  top:2px;left:5px;
  width:5px;height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.dp-quote-form .dp-option label{
  display:flex;
  align-items:center;
  gap:8px;
}

.dp-quote-form .dp-option-title{
  flex:0 1 auto;
}

.dp-quote-form .dp-option-price{
  margin-left:auto;
}

/* Total */
.dp-total-wrap{
  font-size:16px;
  font-weight:600;
  color:#132443;
  text-align:center;
  margin:24px 0 12px;
}

/* Submit button */
.dp-submit-btn{
  width:100%;
  padding:14px;
  font-size:16px;
  font-weight:600;
  color:#fff;
  border:none;
  border-radius:12px;
  background:linear-gradient(90deg,#132443 0%, #132443 100%);
  cursor:pointer;
  transition:opacity .25s;
}
.dp-submit-btn:hover{
  opacity:.9;
} 