.akhand-feedback-form {
    max-width: 380px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.akhand-feedback-form h3 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    text-align: center;
}

.akhand-feedback-form p {
    text-align: center;
    color: #7f8c8d;
    margin: 0 0 20px 0;
}

.akhand-feedback-form .field {
    margin-bottom: 20px;
}

.akhand-feedback-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.akhand-feedback-form .required {
    color: #e74c3c;
}

.akhand-feedback-form input[type="text"],
.akhand-feedback-form input[type="email"],
.akhand-feedback-form input[type="tel"],
.akhand-feedback-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.akhand-feedback-form input[type="text"]:focus,
.akhand-feedback-form input[type="email"]:focus,
.akhand-feedback-form input[type="tel"]:focus,
.akhand-feedback-form textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.akhand-feedback-form textarea {
    min-height: 100px;
    resize: vertical;
}

.akhand-feedback-form .stars {
    display: flex;
    gap: 6px;
    margin: 5px 0 0 0;
}

.akhand-feedback-form .star {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.akhand-feedback-form .star:hover,
.akhand-feedback-form .star.active {
    color: #f4b400;
}

.akhand-feedback-form button {
    width: 100%;
    padding: 14px;
    background: #3e5f58;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.akhand-feedback-form button:hover {
    background: #344e47;
}

.akhand-feedback-form .msg {
    text-align: center;
    margin: 15px 0 0 0;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}

.akhand-feedback-form .msg.success {
    color: #27ae60;
    background-color: #e8f5e9;
}

.akhand-feedback-form .msg.error {
    color: #e74c3c;
    background-color: #fde8e7;
}

input[type=text]{
    border: 1px solid #d3d3d3;
}
