/*Formulario para enviar mensajes*/
.chat {
    .bottom {
        #upload-form {
            display: none;
        }

        form {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #dddddd35;
            margin-top: auto;

            .icons {
                display: flex;
                gap: 15px;
            }

            img {
                width: 30px;
                height: 30px;
                cursor: pointer;
            }

            input {
                flex: 1;
                width: 30%;
                max-width: 100%;
                overflow: scroll;
                display: flex;
                flex-direction: column;
                background-color: rgba(17, 25, 40, 0.5);
                border: none;
                outline: none;
                color: white;
                border-radius: 10px;
            }

            .sendButton {
                background-image: url('/img/icons/send.png');
                background-repeat: no-repeat;
                background-position: center;
                background-color: transparent;
                padding: 20px 20px;
                border: none;
                border-radius: 50%;
                cursor: pointer;
            }
        }
    }
}
