/* Change fonts for input fields */
input {
    font-family: 'promptregular', sans-serif;
}

select {
    font-family: 'promptregular', sans-serif;
}

select option {
    font-family: 'promptregular', sans-serif;
}

/* Tailwind Clone */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.font-bold {
    font-weight: 700 !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.text-white {
    color: #fff;
}

.no-underline {
    text-decoration-line: none;
}
