@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #050505;
  font-family: Manrope, system-ui, sans-serif;
}

button,
input,
textarea,
select {
  font: inherit;
}

label {
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0.9rem 1rem;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #d6a84a;
}

select option {
  color: #050505;
}
