@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}

:root {
    --primary-color: #00923F;  
    --accent-color: #e06666;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-color: #4e4b4b;
  }
  
  body {
   background-color: #fff;
   font-family: "Open Sans", serif;
   color: var(--dark-color);
   line-height: 1.6;
   font-size: 16px;
  }

  /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
display: flex;
justify-content: center;
flex-direction:column;
 width:100%;  
}
header .logo img{
display: flex;
align-items: start;  
height: auto;
margin:6px 8px;
}
  
  .form-container {
    max-width: 1000px;
    margin: 30px auto;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  .icon-info-circle{
    width: 1em;
    height: 1em;
    stroke-width: 1;
    stroke:#0c5394;
    fill: #0c5394; 
  }
  .icon-envelope{
    width: 1em;
    height: 1em;
    stroke-width: 1;
    stroke:#000;
    fill: #000; 
  }
  .icon-phone{
    width: 1em;
    height: 1em;
    stroke-width: 1;
    stroke:#000;
    fill: #000;
  }
  .icon-rotate-left{
    width: 1em;
    height: 1em;
    stroke-width: 1;
    stroke:#fff;
    fill: #fff;
  }
  .form-container h2{
    font-family: "Roboto", serif;
    font-size: 1.8em;
    color: var(--dark-color);
    text-align: center;
    margin-left: 25px;
  }
  .form-container .form-header {
    background-color: var(--primary-color);
    color: #FFFFCC;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
  }
  
  .form-container .form-header h3 {
     font-family: "Roboto", serif;
    margin: 0;
    font-weight: 600;
    font-size: 1.5em;
  }
  
  .form-header p {
    font-family: "Open Sans", serif;
    margin-top: 5px;
    opacity: 0.9;
    font-size: 15px;
  }
  
  .form-content {
    padding: 30px;
  }
  
  .section-title {
    color: var(--primary-color);
    padding: 12px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-family: "Open Sans", serif;
    font-size: 1.25em;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  
  .section-title i {
    margin-right: 10px;
  }
  
  .form-label {
    font-family: "Open Sans", serif;
    font-size: 1em;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
  }
  
  .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    box-shadow: 0 0 0 3px rgba(28, 69, 135, 0.15);
    border-color: var(--primary-color);
  }
  
  .form-check-input {
    width: 18px;
    height: 18px;
  }
  
  .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .form-section {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
  }

  .form-footer {
    background-color: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
  }
  
  .btn-primary:hover {
    background-color: #153a70;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(28, 69, 135, 0.2);
  }
  
  .btn-secondary {
    background-color: #6c757d;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
  }
  
  .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 117, 125, 0.2);
  }
  
  .required-field::after {
    content: " *";
    color: var(--accent-color);
  }
  
  .input-group-text {
    background-color: var(--light-color);
  }
  
  .dropdown-option-description {
    font-size: 0.8em;
    color: #6c757d;
    margin-left: 24px;
  }
  
  .form-check-label {
    font-weight: normal;
  }
  
  .alert-info {
    background-color: #e8f4fd;
    border-color: #b8d8f8;
    color: #0c5394;
  }
  
  .form-text {
    color: #6c757d;
    font-size: 0.75em;
    margin-top: 5px;
  }
  
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .radio-card {
   /* border: 1px solid var(--border-color);
    border-radius: 8px;*/
    padding: 10px 15px;
    transition: all 0.2s ease;
    cursor: pointer;
    flex: 1 0 calc(25% - 15px);
    min-width: 150px;
  }
  
  .radio-card:hover {
    background-color: #f8f9fa;
  }
  
  .radio-card input[type="radio"]:checked + label {
    color: var(--primary-color);
    font-weight: 500;
  }
  
  .radio-card input[type="radio"]:checked ~ .radio-card {
    border-color: var(--primary-color);
    background-color: #f0f5ff;
  }
  
  .medida-proteccion {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
  }
  
  .medida-proteccion:hover {
    background-color: #f8f9fa;
  }
  
  .medida-proteccion input[type="checkbox"]:checked ~ .medida-proteccion {
    border-color: var(--primary-color);
    background-color: #f0f5ff;
  }
  
  .tipo-medio-probatorio {
    font-size: 14px;
    margin-top: 20px;
  }
  
  .tipo-medio-probatorio .badge {
    font-size: 0.7em;
    font-weight: normal;
    margin-right: 5px;
    background-color: #e9ecef;
    color: #495057;
    padding: 5px 8px;
    border-radius: 4px;
  }
  
  .info-nota {
    font-size: 0.8em;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 6px;
  }
  .mensaje{
  padding: 87px 0 87px;
}
 .mensaje .msn-exitoso {
    max-width: 1000px;
    margin: 30px auto;    
    overflow: hidden;
  }
  .mensaje .msn-exitoso h4{
    font-family: "Open Sans", serif;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;   
    color: var(--primary-color);
    padding: 1.5rem 0;
    text-transform: uppercase;

  }
   .mensaje .msn-exitoso p{
    font-family: "Open Sans", serif;
    font-size: 1.3em;
    color: var(--dark-color);
    text-align: center;
  }

  .mensaje .msn-exitoso p a{
    font-family: "Open Sans", serif;
    font-size: 1.3em;
   
     text-align: center;
  }


  @media (max-width: 768px) {
    .form-content {
      padding: 20px 15px;
    }
    
    .radio-card {
      flex: 1 0 calc(50% - 15px);
    }
  }