@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;600&display=swap');

html, body {
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    height: 100vh;
}

::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #fd7e14;
  }

  ::-webkit-scrollbar-track {
    background-color: #000;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
  }

label {
    font-weight: 600;
    font-size: .8rem;
}

fieldset {
    margin: 30px 0;
}

legend {
    font-weight: 600;
    font-size: 1.2rem;
}

.bg-image {
    background: url('../images/form-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.formulario {
    max-width: 500px;
}

.table tr td, .table tr th {
    vertical-align: middle;
}

hr {
    opacity: .1;
}