
body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.container {
  display: flex;
  justify-content: space-between;
  margin: 20px; /* Ajusta el margen según tus necesidades */
  padding: 20px;
  border: 5px solid #0306f1;
  gap: 20px;
}

.form-section {
  width: 48%; /* Ajusta el ancho de cada sección */
  margin-bottom: 10px; /* Espacio entre secciones */
  padding: 10px;
  border: 5px solid #03ff00;
  }

.form-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.form-group canvas {
  border: 1px solid #ccc;
  width: 100%;
  height: 150px;
}

.form-group button {
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-group button:disabled {
  background-color: #ccc;
}

.centrarfirma {
  display: flex;
  justify-content: center;
}

.fecha {
  font-weight: bold;
  font-size: 20px;
  text-align: right;
  
}

.fechahora {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  color: #03ff00;
}

.label {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 25px;
}

h3 {
  font-size: 30px;
}

button{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

input{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.rectanguloGrande {
  height: 2cm;
  background-color: #0306f1; /* Color azul */
}
.rectanguloChico {
  height: 0.5cm;
  background-color: #03ff00; /* Color azul */
}
  
.redes{
  display: flex;
  justify-content: space-around;
  margin: 2% 5%;
} 

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

.half-azul {
  color: #0306f1;
}

.half-verde {
  color: #03ff00;
}

 .formulario {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0306f1;
}

 .guardar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0306f1;
}

.enviar {
  display: flex;
  justify-content: space-around;
}

.imgenviar {
  width: 5%; /* Ancho fijo */
  height: 5%; /* Alto fijo */
  object-fit: contain; /* Ajusta la imagen sin deformarla */
}

.qr {
  display: flex;
  justify-content: space-around;
  color: #0306f1;
}

.qrenviar {
  width: 20%; /* Ancho fijo */
  height: 20%; /* Alto fijo */
  object-fit: contain; /* Ajusta la imagen sin deformarla */
}

#custom-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    display: none;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#custom-alert.success {
    background-color: #28a745; /* Verde */
}
#custom-alert.error {
    background-color: #dc3545; /* Rojo */
}