@import "https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap";
@import "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css";

/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.m-primary-button {
  border: none;
  color: white;
  font-size: 0.85rem;
  height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
  background-color: #5046E6;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
.m-primary-button:hover {
  background-color: #3A2F9E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 70, 230, 0.3);
}
.m-secondary-button {
  color: #5046E6;
  font-size: 0.85rem;
  height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
  background-color: white;
  border: 1px solid #5046E6;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
.m-secondary-button:hover {
  background-color: #5046E6;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 70, 230, 0.3);
}
.m-danger-button {
  color: white;
  font-size: 0.85rem;
  height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
  background-color: #FF4D4F;
  border: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
.m-danger-button:hover {
  background-color: #FF3333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 79, 0.3);
}
.m-danger-outline-button {
  color: #FF4D4F;
  font-size: 0.85rem;
  height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
  background-color: white;
  border: 1px solid #FF4D4F;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
.m-danger-outline-button:hover {
  background-color: #FF4D4F;
  color: white;
  border: 1px solid #FF4D4F;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 79, 0.3);
}
.title-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}
[class^=bi-],
[class*=" bi-"],
.bi {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: -0.125em;
}

/* angular:styles/global:styles */
