
/* General Responsiveness for Various Components */

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 8px;
  background-color: #f76b45;
  z-index: 9999;
}

* {
  cursor: url('./assets/images/ads_click_24dp_000000_FILL0_wght400_GRAD0_opsz24.svg'), auto;
}

/* Circle Effect */
.circle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(73, 232, 247, 0.466), rgba(141, 38, 172, 0.5));
  transition: transform 0.1s, left 0.1s, top 0.1s;
}

.circle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

@media (max-width: 720px) {
  .circle-container {
    display: none;
  }
}

/* Unique Popup Message */
.unique-popup-message {
  position: fixed;
  top: 30px;
  right: 2px;
  max-width: 90%;
  width: 300px;
  background-color: #a4d8ff;
  color: #131722;
  padding: 11px;
  border-radius: 5px;
  text-align: center;
  z-index: 1000;
  box-sizing: border-box;
  overflow: hidden;
}

/* Border Animation */
.border-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  background-color: rgb(17, 9, 230);
  width: 100%;
  transform-origin: right;
}

@keyframes borderAnimation {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Social Icons */
.social-icons {
  text-align: left;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.1rem;
  height: 2.1rem;
  background-color: transparent;
  border: 0.2rem solid #0890ff;
  font-size: 1.1rem;
  border-radius: 50%;
  margin: 1rem 0.5rem 0.5rem 0;
  transition: 0.3s ease;
  color: #55ff00;
}

.social-icons a:hover {
  color: rgb(139, 249, 12);
  transform: scale(1.3) translateY(-5px);
  background-color: #0048ff;
  box-shadow: 0 0 25px #03133c;
}

/* Or Sign-in-with Separator */
.or-sign-in-with {
  margin: 20px 0;
  font-size: 14px;
  font-weight: bold;
  color: #666;
  text-align: center;
  position: relative;
}

.or-sign-in-with::before,
.or-sign-in-with::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  border-top: 1px solid #ccc;
}

.or-sign-in-with::before {
  left: 0;
  transform: translateX(-2%);
}

.or-sign-in-with::after {
  right: 0;
  transform: translateX(2%);
}

/* Form and Check Elements */
.form-check {
  display: flex;
  align-items: center;
}

.form-check a {
  margin-left: auto;
}

.form {
  background-color: #0890ff;
  margin: 5%;
  padding: 2rem;
  border-radius: 8px;
  box-sizing: border-box;
}

h2 {
  text-align: center;
  margin-top: 30px;
}
