@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap);
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --horizontal-padding: .5rem;
  --transition-d: 150ms;
}

body {
  height: 100vh;
  font-family: "BioRhyme", sans-serif;
  display: flex;
  justify-content: center;
}

h2 {
  all: unset;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
}

.bg {
  width: 100vw;
  height: 100vh;
  inset: 0;
  background-image: url(./images/oh-la-la.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  position: fixed;
  z-index: -1;
}

.container {
  margin: auto 0;
  width: 350px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 7px;
  padding: 1.5rem 1rem;
  box-shadow: 10px 10px 10px rgba(45, 55, 68, 0.3);
}

.logo {
  margin: 0 auto;
  width: 160px;
}
.logo svg {
  width: 100%;
  height: 100%;
}

ul {
  list-style-type: none;
  padding: 1rem 0;
}
ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: var(--horizontal-padding);
  transition: background-color var(--transition-d) ease-in-out;
}
ul li label {
  display: flex;
  align-items: center;
}
ul li label::before {
  content: "";
  display: inline-block;
  margin-right: 0.5rem;
  background-image: url(./images/square-regular.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 20px;
}
ul li input:checked + label::before {
  background-image: url(./images/check-square-regular.svg);
}
ul li input {
  display: none;
}
ul li span {
  display: inline-block;
  width: 14px;
  height: 18px;
  margin-left: auto;
  background-image: url(./images/times-solid.svg);
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--transition-d) ease-in-out;
  cursor: pointer;
}
ul li:hover {
  background-color: white;
  backdrop-filter: blur(30px);
}
ul li:hover span {
  opacity: 1;
}

form {
  display: flex;
  margin: 0 auto;
  padding: var(--horizontal-padding);
}
form input[type=text] {
  flex: 1;
}

form.collective {
  margin-top: 1rem;
}
form.collective a {
  font-size: 0.8rem;
  color: #505050;
}
form.collective a:nth-child(2) {
  margin-left: 1.6rem;
}
form.collective a:last-child {
  margin-left: auto;
}

input[type=text] {
  margin: 0 1rem 0 0;
  padding: 0 0.5rem;
}
input[type=text]:focus {
  outline: none;
}
input[type=text]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

input[type=submit] {
  padding: 0.5rem;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(31, 31, 31, 0.3);
  transition: box-shadow 150ms ease-in-out;
}
input[type=submit]:hover {
  box-shadow: 0 0 12px rgba(31, 31, 31, 0.4);
}

main {
  padding: 2rem 0 0;
}

/*# sourceMappingURL=styles.css.map */
