@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";

/* src/styles.scss */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    "Roboto",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
  color: #09182d;
  background-color: #09182d;
}
.container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn:focus,
.btn:hover {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(145, 124, 83, 0.25);
}
.btn-primary {
  color: #ffffff;
  background-color: #917c53;
  border-color: #917c53;
}
.btn-primary:hover {
  background-color: rgb(112.5657894737, 96.2631578947, 64.4342105263);
  border-color: rgb(106.0789473684, 90.7157894737, 60.7210526316);
}
.btn-secondary {
  color: #ffffff;
  background-color: #09182d;
  border-color: #09182d;
}
.btn-secondary:hover {
  background-color: rgb(0.5, 1.3333333333, 2.5);
  border-color: black;
}
.btn-outline-primary {
  color: #917c53;
  background-color: transparent;
  border-color: #917c53;
}
.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #917c53;
}
.btn-block {
  display: block;
  width: 100%;
}
.form-group {
  margin-bottom: 1rem;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #09182d;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #e0e0e0;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  border-color: #917c53;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(145, 124, 83, 0.25);
}
.form-control.is-invalid {
  border-color: #d32f2f;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}
.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #d32f2f;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}
.card-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #09182d;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}

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