body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Left section */
.left-section {
  flex: 1;
  background: url('../assets/fond.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.left-section::-webkit-scrollbar {
  width: 8px;
}

.left-section::-webkit-scrollbar-thumb {
  background-color: rgba(13, 196, 104, 0.57);
  border-radius: 10px;
}

.left-section::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.2);
}

.glass-card {
  padding: 20px;
  backdrop-filter: blur(10px);
  border-radius: 14px;
  background-color: rgba(0, 0, 0, 0.14);
  color: white;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 80%;
}

.support {
  display: flex;
  flex-direction: column;
  width: 80%;
  text-align: center;
}

/* Card 1 : Price */
.separator {
  border: none;
  border-top: 1px solid #9A9EAC;
  margin: 20px 0;
  opacity: 0.5; 
}

/* Card 2 : Icon */
.icon-container {
  background-color: #090B0F;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 10px;
}

.icon-container img {
  width: 16px;
  height: 16px;
}

/* Right section : Form */
.right-section {
  flex: 1.5;
  background-color: #181C23;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  height: 100vh;
}

.right-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 40vw;
  max-width: 434px;
  height: 40vh;
  background: linear-gradient(135deg, rgba(13, 196, 104, 0.57), rgba(0, 0, 0, 0));
  border-radius: 50%;
  filter: blur(80px);
  transform: rotate(-33deg);
  transform-origin: 0 0;
  pointer-events: none;
  opacity: 0.6;
  overflow: hidden;
}

.right-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40vw;
  max-width: 434px;
  height: 40vw;
  max-height: 434px;
  background: linear-gradient(45deg, rgba(13, 196, 104, 0.57), rgba(0, 0, 0, 0));
  border-radius: 50%;
  filter: blur(150px);
  transform: rotate(33deg);
  transform-origin: 0 0;
  pointer-events: none;
  opacity: 0.6;
  overflow: hidden;
}

.form-signin {
  width: 400px;
  padding: 15px;
}

.form-signin .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
  margin-top: 15px;
}

.form-signin input[type="email"],
.form-signin input[type="tel"],
.form-signin input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin .btn {
  background: linear-gradient(89.14deg, #00ab55, #53a0ea);
  border: none;
  color: white;
}

/* Text custom */
.thanks {
  font-size: 14px;
  color: white;
  text-align: left;
}
.support-text {
  font-size: 12px;
  color: white;
  text-align: center;
}
.text-muted {
  text-align: left;
  color: #9A9EAC;
  font-size: 12px;
}
.text-h3 {
  text-align: left;
  color: white;
}
.terms-phrase {
  margin-top: 8px;
  font-size: 14px; 
  color: #9A9EAC;  
  text-align: center;
}

.iti__country-name{
  color: #090B0F;
}

@media (min-width: 768px) {
  .form-signin {
    width: 500px;
  }
}

@media (min-width: 1024px) {
  .form-signin {
    width: 600px;
  }
}