.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10000;
    transition: background-color 0.3s;
}

.chat-icon img {
    width: 40px;
    height: 40px;
}

.chat-icon:hover {
    background-color: #cc0000;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: none;
    z-index: 1001;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

.chat-widget h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #ff0000;
    text-align: center;
    padding-top: 0px;
}

.chat-subtitle {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
    
    input{
        margin-bottom: 0px !important;
        color: #767676 !important;
        background-color: #fafafa !important;
        padding: 4px 20px !important;
    }
}

.chat-widget label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.chat-widget input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.chat-widget input:focus {
    border-color: #ff0000;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.2);
    outline: none;
}

.chat-widget input::placeholder {
    font-size: 13px;
    color: #888;
}

/* Input States */
input.error {
    border-color: #ff0000;
}

.error-icon {
    color: #ff0000;
    font-size: 16px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Button Styles */
.chat-widget button {
    width: 100%;
    padding: 10px;
    background-color: #ed1a3b;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.chat-widget button:hover {
    background-color: #cc0000;
}

#chat-submit:disabled {
    background-color: #ccc;
    color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}