* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  width: 100%;
  height: 100vh;
  background: #03080e;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-family: "Lato", sans-serif;
  color: #eee;
}
.wrapper .main {
  height: 100%;
  padding: 2rem 1rem 1rem;
  display: flex;
  justify-content: center;
}
.wrapper .main .form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  z-index: 10;
}
.wrapper .main .form-headline h1 {
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 1rem;
}
.wrapper .main .form-headline .subtitle {
  font-size: 38px;
  font-weight: 300;
}
.wrapper .main .form-headline .subtitle span.gr-text {
  font-weight: 400;
  background: radial-gradient(circle farthest-corner at 10% 20%, rgba(237, 3, 32, 0.87) 20.8%, rgba(242, 121, 1, 0.84) 74.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wrapper .main .form-headline .subtitle span.gr-text:nth-last-of-type(2) {
  background-image: linear-gradient(109.6deg, rgb(103, 30, 117) 11.2%, rgb(252, 76, 2) 91.1%);
}
.wrapper .main .form-headline .subtitle::after {
  content: "";
  width: 100%;
  height: 4px;
  margin-top: 1rem;
  display: block;
  background-image: linear-gradient(to right, #8c380b 0%, rgba(249, 212, 35, 0) 100%);
}
.wrapper .main .form-content {
  width: 100%;
  max-width: 500px;
  height: 200px;
  padding: 1rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1019607843));
  background-image: linear-gradient(to bottom right, rgba(9, 32, 63, 0.4) 0%, rgba(83, 120, 149, 0.1019607843) 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 10px;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1019607843);
  z-index: 10;
  overflow: hidden;
}
.wrapper .main .form-content::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  bottom: -20%;
  right: -5%;
  background: #70392d;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
}
.wrapper .main .form-content::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0%;
  left: -10%;
  background: #95402f;
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
}
.wrapper .main .form-content #urlForm {
  width: 100%;
  z-index: 10;
}
.wrapper .main .form-content #urlForm .input-group {
  display: flex;
}
.wrapper .main .form-content #urlForm .input-group #url-input {
  width: 90%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.0666666667);
  color: #eee;
}
.wrapper .main .form-content #urlForm .input-group #url-input:focus {
  outline: none;
}
.wrapper .main .form-content #urlForm .input-group button {
  width: 10%;
  border: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  background-color: rgba(255, 255, 255, 0.1333333333);
  color: #fff;
  transition: 0.2s;
}
.wrapper .main .form-content #urlForm .input-group button:hover, .wrapper .main .form-content #urlForm .input-group button:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
.wrapper .main .form-content #result-box {
  width: 100%;
  display: none;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}
.wrapper .main .form-content #result-box #shortened-url,
.wrapper .main .form-content #result-box #err-msg,
.wrapper .main .form-content #result-box #reload-btn {
  display: none;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.1333333333);
  border-radius: 4px;
  transition: 0.2s;
  cursor: pointer;
}
.wrapper .main .form-content #result-box #reload-btn {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.3rem;
  border: none;
  color: #eee;
}
.wrapper .main .form-content #result-box #shortened-url:hover,
.wrapper .main .form-content #result-box #reload-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.wrapper .main .form-content #result-box #err-msg {
  display: none;
  background: rgba(164, 38, 38, 0.2);
  color: #ffa6a6;
  cursor: default;
}
.wrapper .main .form-content p.legend {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.5;
}
.wrapper .main .form-content #spinner-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(17, 17, 17, 0.4666666667);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 10px;
  z-index: 999;
}
@media screen and (max-width: 928px) {
  .wrapper .main .form {
    flex-direction: column;
  }
  .wrapper .main .form-headline, .wrapper .main .form-content {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .wrapper .main .form {
    gap: 0rem;
  }
  .wrapper .main .form-headline {
    text-align: center;
  }
  .wrapper .main .form-headline .logo {
    transform: scale(0.8);
  }
  .wrapper .main .form-headline h1 {
    font-size: 36px;
  }
  .wrapper .main .form-headline .subtitle {
    font-size: 20px;
  }
  .wrapper .main .form-headline .subtitle::after {
    background-image: linear-gradient(to right, rgba(140, 56, 11, 0.3333333333) 0%, rgba(239, 102, 29, 0.4) 100%);
  }
  .wrapper .main .form-content {
    height: 300px;
    padding: 0.2rem 1rem;
  }
}
.wrapper .main .shapes {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.wrapper .main .shapes .url-icon {
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: 28%;
  right: 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: radial-gradient(circle farthest-corner at 10% 20%, rgba(237, 3, 32, 0.87) 20.8%, rgba(242, 121, 1, 0.84) 74.4%);
  border-radius: 50%;
  animation: animate-up 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(195, 53, 16, 0.6);
}
.wrapper .main .shapes .url-icon i {
  padding-top: 0.8rem;
  font-size: 5.4rem;
}
.wrapper .main .shapes .scissors-icon {
  width: 180px;
  height: 180px;
  position: absolute;
  top: 22%;
  right: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  background-image: linear-gradient(109.6deg, rgb(103, 30, 117) 11.2%, rgb(252, 76, 2) 91.1%);
  border-radius: 50%;
  animation: animate-down 6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(158, 51, 69, 0.6);
}
.wrapper .main .shapes .scissors-icon i {
  padding-top: 1rem;
  font-size: 6.4rem;
}
@media screen and (max-width: 928px) {
  .wrapper .main .shapes .url-icon {
    bottom: 5%;
    right: unset;
    left: 5%;
  }
  .wrapper .main .shapes .scissors-icon {
    top: unset;
    bottom: 16%;
    right: 1%;
  }
}
@media screen and (max-width: 450px) {
  .wrapper .main .shapes .url-icon {
    bottom: 12%;
    right: unset;
    left: 8%;
    animation: unset;
  }
  .wrapper .main .shapes .scissors-icon {
    top: unset;
    bottom: 20%;
    right: 10%;
    animation: unset;
  }
}
@media screen and (max-width: 450px) {
  .wrapper .main {
    padding: 1rem 0.6rem;
  }
}

/* Container for notifications */
.notification-container {
  position: fixed;
  top: 0;
  left: 50%;
  /* Initial position, notifications will stack downward */
  transform: translateY(0) translateX(-50%);
  /* Smooth animation for adjusting position */
  transition: transform 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 450px) {
  .notification-container {
    width: 100%;
    padding: 0 1rem;
  }
  .notification-container .notification.copy-success {
    background-color: rgba(38, 164, 93, 0.6666666667);
  }
  .notification-container .notification.warning {
    background-color: rgba(164, 38, 38, 0.6666666667);
  }
}

/* Individual notification styles */
.notification {
  display: block;
  padding: 0.6rem 1rem;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px;
  /* Spacing between notifications */
  margin: 10px 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Initial opacity, for animation */
  opacity: 0;
  /* Initial position, notifications start at the top */
  transform: translateY(-100%);
  /* Smooth animation for showing and hiding */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.copy-success {
  background-color: rgba(38, 164, 93, 0.2);
  color: #a6ffbf;
}

.notification.warning {
  background-color: rgba(164, 38, 38, 0.3333333333);
  color: #ffa6a6;
}

/* Animation for showing a notification */
.animate-toast-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for hiding a notification */
.animate-toast-out {
  opacity: 0;
  /* Start from the bottom to fade out */
  transform: translateY(100%);
}

@keyframes animate-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes animate-down {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(30px) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}/*# sourceMappingURL=style.css.map */