
.input-label {
    margin-bottom: 0.5rem;
}

.help-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #6b7280;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    margin-left: 6px;
    cursor: help;
    vertical-align: middle;
}

/* Input Label */
.input-label {
    color: var(--Negro, #121212);
    text-align: center;
    font-family: Outfit;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.025rem;
    align-self: stretch;
    display: block;
}

.input-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #F5F5F5;
    border-radius: 78.49px;
    border: 2px solid transparent;
    justify-content: center;
}

.input-prefix {
    color: #121212;
    font-size: 14px;
    font-family: Outfit;
    font-weight: 400;
    line-height: 14px;
    flex-shrink: 0;
}

.form-input {
    flex: 1 1 0;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: Outfit;
    font-weight: 400;
    line-height: 14px;
    color: #121212;
    opacity: 0.60;
    outline: none;
    padding: 0;
}

.form-input:focus {
    opacity: 1;
}

.form-group:focus-within .input-wrapper {
    border: 2px solid #73BCE8;
    background: white;
}

.form-input::placeholder {
    color: #121212;
    opacity: 0.60;
}

/* Error state styles */
.form-group.has-error .input-wrapper {
    border-radius: 6.25rem;
    border: 1px solid #F00000;
    background: #F5F5F5;
    box-shadow: 0 0 0 2.5px rgba(240, 0, 0, 0.25);
}

.form-input:focus::placeholder {
    opacity: 0.40;
}

@media (max-width: 768px) {
    
    .form-label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .form-input {
        font-size: 15px;
    }
}