body {
  margin: 0;
  background: #3399ff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column; /* 🔧 add this */
}

.content-wrapper {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ripple-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  z-index: 0;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #508fb9;
  transform: translate(-50%, -50%);
}

.small {
  width: 200px;
  height: 200px;
}
.medium {
  width: 400px;
  height: 400px;
}
.large {
  width: 600px;
  height: 600px;
}
.xlarge {
  width: 800px;
  height: 800px;
}
.xxlarge {
  width: 1000px;
  height: 1000px;
}

.shade1 {
  opacity: 0.2;
}
.shade2 {
  opacity: 0.5;
}
.shade3 {
  opacity: 0.7;
}
.shade4 {
  opacity: 0.8;
}
.shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
  }
}

.dialog-box {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.dialog-box h2 {
  margin-bottom: 1rem;
}

.dialog-box p {
  margin-bottom: 1.5rem;
}

.dialog-box .btn {
  width: 100%;
}

.g-recaptcha iframe {
  width: 100% !important;
  border-radius: 0.375rem !important;
}

.captcha-container {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}

.btn-linkedin {
  background-color: #0077b5;
  color: #ffffff;
}

.btn-facebook {
  background-color: #1877f2;
  color: #ffffff;
}

.btn-google {
  background-color: #db4437;
  color: #ffffff;
}

.btn-social {
  
  transition: all 0.4s;
}

.btn-social i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.btn-social:hover {
  background-color: color-mix(in srgb, #333333, transparent 20%);
}

.btn-social.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.divider {
  display: flex;
}
.divider:before,
.divider:after {
  content: "";
  flex: 1;
}

.line {
  align-items: center;
  margin: 1em -1em;
}
.line:before,
.line:after {
  height: 1px;
  margin: 0 1em;
}

.one-line:before,
.one-line:after {
  background: #495057;
}
