body {
    font-family: 'Afacad', sans-serif;
    margin: 0;
    height: auto;
}
.free-trial-container {
    min-height: 80vh; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem;
    box-sizing: border-box;
    overflow: hidden;
}
.free-trial-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background);
    backdrop-filter: blur(8px);
    z-index: 0;
}
.free-trial-container > * {
    position: relative;
    z-index: 1;
}
.free-trial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    padding: 0rem 1.25rem 0rem 0rem;
    max-width: 1300px;
    margin: auto;
}  
.left {
    padding: 3rem 3rem 3rem 0;
    width: 100%;   
}
.form-checkbox{
    display: flex;
    align-items: center;
}
.right {
    width: 75%;
    height: max-content;
    padding: 25px 2.5rem 25px 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
} 
.right input #checkbox {
    margin-top: 10px;
}
.left h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.left h2,
.right h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.features p strong {
    color: var(--primary-color);
}
.features p i {
    color: var(--primary-color);
    margin-right: 7px;
}
.left p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
    width: 100%;
    justify-self: center;
    font-weight: 500;
}  
.right form {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}  
.right input {
    position: relative;
    padding: 0.8rem !important;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}  
.right button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}  
.checkbox-btn {
  margin-top: 8px;
}
.country-wrapper {
  position: relative;
  width: 100%; 
}
.country-wrapper input {
  width: 100%; 
  box-sizing: border-box;
}
.country {
  margin-bottom: 0 !important;
}
.suggestions-box {
  position: absolute;
  top: 100%;  
  left: 0;
  width: 100%; 
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 10rem;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  text-align: start;
  color: #343434;
  font-weight: 400;
  font-size: 14px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.suggestion-item:hover {
    background-color: #f1f1f1;
}
.suggestion-item {
    padding: 10px;
    cursor: pointer;
}
.phone-container {
  margin-top: 1rem;  
  display: flex;
  gap: 10px; 
}
.country-code {
  width: 60px; 
  text-align: center;
}
#contactNumber {
  flex: 1; 
}
@media (max-width: 768px) {
    .free-trial-wrapper {
        gap: 0.5rem;
        padding: 1.5rem;
        flex-direction: column-reverse;
    }
    .left {
        width: 100%;
        padding: 0.5rem 0.25rem;
        margin-left: 0;
    }
    .left h1 {
        text-align: center;
    }
    .right {
        width: 100%;
        padding: 1.75rem 1rem;
        margin-left: 0;
    }
    .form-checkbox {
        margin-bottom: .8rem;
    }
    .form-checkbox label {
        display: inline;
    }
    .checkbox-btn {
        margin-top: -15px;
    }
}