/* Custom Form Styles */
.custom-input {
    font-family: var(--heading-font);
    font-weight: 700;
    color: #333 !important;
    font-size: 16px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 0 8px 36px;
    line-height: 1;
    height: inherit;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-bottom-color: var(--main-600);
    box-shadow: none;
}

.custom-input::placeholder {
    color: #999 !important;
    opacity: 1;
    font-weight: 400;
}

.custom-input:focus::placeholder {
    opacity: 0.7;
}

/* Textarea specific styles */
.custom-input[type="textarea"],
textarea.custom-input {
    resize: none;
    min-height: 30px;
}

/* Form label styling */
.form-label {
    margin-bottom: 8px;
}

/* Icon styling */
.form-label span i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Submit button hover effect */
.checkout-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
    color: hsl(215.15deg 74.44% 26.08%) !important;
    opacity: 1;
    font-weight: 600;
}
