/* src/styles.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.btn.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  outline: none;
  padding: 16px 32px;
  font-size: 18px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      #000000,
      rgb(25.5, 25.5, 25.5));
  color: #efbf04;
}
.btn-primary:hover {
  background:
    linear-gradient(
      135deg,
      rgb(12.75, 12.75, 12.75),
      hsl(0, 0%, -5%));
  color: #efbf04;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background:
    linear-gradient(
      135deg,
      #efbf04,
      rgb(251.4444444444, 208.7777777778, 42.5555555556));
  color: #000000;
}
.btn-secondary:hover {
  background:
    linear-gradient(
      135deg,
      rgb(251.024691358, 203.3209876543, 17.475308642),
      rgb(213.9197530864, 170.9567901235, 3.5802469136));
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(239, 191, 4, 0.3);
}
.btn-tertiary {
  background:
    linear-gradient(
      135deg,
      #ffffff,
      rgb(242.25, 242.25, 242.25));
  color: #000000;
}
.btn-tertiary:hover {
  background:
    linear-gradient(
      135deg,
      hsl(0, 0%, 105%),
      rgb(242.25, 242.25, 242.25));
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-tertiary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.btn-tertiary:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  line-height: 1.6;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin-bottom: 1em;
}
a {
  color: #efbf04;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(251.4444444444, 208.7777777778, 42.5555555556);
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem;
  border: 2px solid #0f0f0f;
  border-radius: 6px;
  background-color: #ffffff;
  color: #000000;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #efbf04;
  box-shadow: 0 0 0 3px rgba(239, 191, 4, 0.2);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #191919;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
