@font-face {
    font-family: 'WantedSansVariable';
    src: url('assets/fonts/wanted_sans/WantedSans-1.0.1/variable/WantedSansVariable.ttf') format('ttf'),
         url('assets/fonts/wanted_sans/WantedSans-1.0.1/otf/WantedSans-Regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

.get-started-section {
    font-family: 'WantedSansVariable', sans-serif;
    max-width: 60rem;
    margin: auto;
    padding: 2rem;
}

.form-container {
    border-radius: 1rem;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h1 .highlight {
    color: #2B5FED;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.interest-buttons {
    display: flex;
    justify-content: left;
    gap: 1rem;
    margin-bottom: 4rem;
}

.interest-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: #e7e8ff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #2B5FED;
}

.interest-btn.active {
    background-color: #2B5FED;
    color: #ffffff;
}

.interest-btn:hover {
    background-color: #7096ff;
    color: #ffffff;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
}

.form-group {
    position: relative;
    flex: 1;
    width: 100%;
}

.form-group input {
    width: 85%;
    height: 65%;
    padding-left: 15px;
    padding-right: 60px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 1rem;
    background-color: #FFFFFF;
    border-radius: 3rem;
    border: none;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #2B5FED;
}

.form-group .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.back-btn, .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 45%;
}

.back-btn {
    background-color: #e7e8ff;
    color: #2B5FED;
}

.back-btn:hover {
    background-color: #7096ff;
    color: #ffffff;
}

.submit-btn {
    background-color: #2B5FED;
    color: #ffffff;
}

.submit-btn:hover {
    background-color: #7096ff;
}