.left-side {
  background: url('../imgs/presentacion.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  /*padding: 3rem 2rem;*/
  height: 100vh;
  justify-content: center;
}
.left-side .logo {
  max-width: 180px;
  margin: 0 auto 1rem auto;
}
.left-side h2 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.left-side p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
.btn-tutorial {
  background-color: #0d6efd;
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  width: max-content;
  margin: 0 auto;
}


/* Ajustar imagen perfil */
#imgFoto {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.25rem;
  background: #ddd;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#btnfoto {
  display: block;
  margin: 0.3rem auto 1.5rem auto;
  font-size: 0.9rem;
  color: #007bff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  border-radius: 4px;
}
#btnfoto:hover {
  color: #0056b3;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  display: block;
}

input.form-control,
textarea.form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  padding: 6px 12px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

textarea.form-control {
  min-height: 80px;
}

.text-primary.fw-semibold {
  font-weight: 600;
  font-size: 1rem;
  color: #007bff !important;
  margin-bottom: 0.4rem;
}

.text-info {
  color: #495057 !important;
  font-size: 0.9rem;
}

.info-text {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.75rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

#btnEnviar {
  display: block;
  width: 100%;
  background-color: #d90429;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 0;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}
#btnEnviar:hover {
  background-color: #b00322;
}