@import "https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap";

/* src/styles.scss */
body {
  margin: 0;
  padding: 0;
  background-color: white;
  height: 100vh;
  width: 100vw;
}
#app {
  height: 100%;
  width: 100%;
}
.form-div {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1000;
  font-family: "Roboto Slab", serif;
}
.back-blur {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.card {
  height: auto;
  width: 17rem;
  background-color: white;
}
.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.radius {
  border-radius: 10px;
}
.error-div {
  width: 100%;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}
.error-label {
  color: red;
  width: 100%;
  text-align: left;
  font-size: small;
}
.main-color {
  background-color: #0066ff;
  border: none;
}
.main-color-text {
  color: white;
  font-size: 16px;
  font-weight: bold;
}
.second-color {
  color: rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
}
.input {
  width: 94%;
  margin-top: 15px;
  height: 2.5rem;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0px 0px 1px rgba(66, 66, 66, 0.75);
  padding-left: 10px;
  padding-right: 5px;
}
.input.error-input {
  border-color: red;
}
.input:focus {
  outline: none;
}
.centered-elem {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.tile {
  border: 2px #c7c7c7 solid;
  padding: 1.5rem;
  z-index: 1;
  overflow: hidden;
}
.tile .tile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}
.tile .tile-title {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.switches {
  width: 100%;
  height: 3rem;
  overflow: hidden;
  position: relative;
}
.switch {
  width: 50%;
  height: 100%;
  position: absolute;
}
.button-switch {
  width: 50%;
  height: 100%;
  border: none;
  background-color: transparent;
  z-index: 1;
  position: relative;
}
.active-button {
  color: white;
}
button:hover {
  cursor: pointer;
}
.cta {
  width: 100%;
  margin-top: 1rem;
  height: min-content;
  justify-content: flex-end;
}
.cta button {
  width: 50%;
  height: 3rem;
}
.disabled-button {
  opacity: 0.5;
}
.s-auto {
  height: auto;
  width: auto;
}
.h-auto {
  height: auto;
}
.w-auto {
  width: auto;
}
.danger-button {
  background-color: red;
  border: red solid 1px;
  color: white;
}
.main-button {
  border: #0066ff 1px solid;
  background-color: #0066ff;
  color: white;
}

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