/* VISITORS & DELEGATE */
.sm-input-container {
    display: flex;
    gap: 1%;
}

.sm-select, .prefix-field {
    flex: 0 0 15%;
}

.phone-field {
    flex: 0 0 72%;
}

select, input {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select:focus, input:focus {
    outline: none;
    border-color: #4a90e2;
}

.sm-form-container {
    width: 75%;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(18, 167, 4, 0.5);
    background-color: white;
}

.sm-step {
    margin: 10px 0;
}

.sm-step input[type="text"],
.sm-step input[type="email"],
.sm-step input[type="tel"],
.sm-select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.sm-next-btn,
.sm-prev-btn,
.sm-submit-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    margin-right: 10px;
}

.sm-next-btn:hover,
.sm-prev-btn:hover,
.sm-submit-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 480px) {
    .sm-form-container {
        width: 95%;
        padding: 15px;
    }

    .sm-step h2 {
        font-size: 1.2em;
    }

    .sm-next-btn,
    .sm-prev-btn,
    .sm-submit-btn {
        font-size: 0.9em;
        padding: 10px 15px;
    }
}
