/* =========== Google Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");

/* =============== Globals ============== */
* {
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #0358CB;
  --white: #fff;
  --gray: #f5f5f5;
  --black1: #222;
  --black2: #999;
}

/* ===== master ===== */
.contenedor {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.icon-lg {
  font-size: 1.1rem;
  color: white;
}

.fieldset {
  border: 1px solid var(--black2);
  border-radius: 10px;
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  position: relative;
}

.fieldset legend {
  font-weight: 600;
  padding: 0 10px;
  font-size: 1rem;
  width: auto;
  margin-left: 10px;
  float: none;
}