.formy {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    margin: 107px 0px 108px 0px;
}

.form-container h2 {
    margin-bottom: 15px;
    color: #333333;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555555;
}

.form-group input {
    width: 94%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input[type="file"] {
    padding: 5px;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.form-group button {
    width: 100%;
    padding: 10px;
    background: #011666;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.form-group button:hover {
    background: #0056b3;
}

@media (max-width: 576px) {
    .form-container {
        padding: 15px;
    }

    .form-group input,
    .form-group button {
        font-size: 14px;
        padding: 8px;
    }
}



/* Chat Box Container */
.chat-container {
    margin: 100px 0 100px 0;
    bottom: 20px;
    right: 20px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

/* Header Section */
.chat-header {
    background: linear-gradient(90deg, #4e79ff, #2d63d8);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
}

.chat-header span {
    font-size: 14px;
    opacity: 0.8;
}

/* Chat Messages Section */
.chat-messages {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #ddd;
}

.message {
    margin-bottom: 15px;
}

.message.user {
    text-align: right;
}

.message .bubble {
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.message.user .bubble {
    background-color: #2d63d8;
    color: white;
}

.message.bot .bubble {
    background-color: #f1f1f1;
    color: #333;
}

/* Input Section */
.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    margin-left: 10px;
    padding: 10px;
    background-color: #4e79ff;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.chat-input button:hover {
    background-color: #2d63d8;
}

.chat-messages {
    max-height: 400px;
    overflow-y: scroll;
}

.message {
    margin-bottom: 10px;
}

.message.user .bubble {
    background-color: #3b5998;
    color: white;
    align-self: flex-end;
}

.message.admin .bubble {
    background-color: #f1f0f0;
    color: #333;
    align-self: flex-start;
}


/* Responsive Design */
@media (max-width: 768px) {
    .chat-container {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }
}