@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    background-image: url("./bg-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.container-content{
    width: 250px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}
header{
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    width: 250px;
    height: 40px;
    background-color:#391c4df0 ;
    color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.container-content .top-section{
    width: 100%;
    height: 40px;
    background-color:#391c4df0;
    border-top-left-radius:10px;
    border-top-right-radius: 10px;
    display: flex;
}
.container-content i{
    color: #fff;
    font-size: 20px;
    padding:0 10px;
}
.top-section .input-name{
    flex: 1;
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    border: none;
    outline: none;
}
.container-content .message-chat-section{
    width: 90%;
    flex: 1;
    margin: 0 auto;
}
.container-content .bottom-type-send-section{
    width: 100%;
    height: 45px;
    background-color:#391c4df0;
    border-bottom-left-radius:10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;

}
.bottom-type-send-section i{
    color: #fff;
    font-size: 15px;
    margin: 0 2px;
    cursor: pointer;
}
.bottom-type-send-section .msg-type{
    flex: 1;
    outline: none;
    border-radius: 20px;
    border: none;
    height: 30px;
    padding:0 10px;
    margin-left: 5px;
}
.t_connection{
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    width: 250px;
    height: 40px;
    background-color:#391c4df0 ;
    color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 15px;
}
.message-chat-section{
    position: relative;
    overflow-y: hidden;
}
.message-chat-section .incomingSide{
    max-width: 70%;
    background-color: #fff;
    color:black;
    margin: 7px 0;
    font-size: 10px;
    padding: 5px;
    border-radius: 7px 7px 7px 0;
    font-weight: 500;
    word-wrap: break-word;
}
.msgInfo {
    margin: 3px 0;
    font-weight: 600;
    font-size: 7px;
}
.message-chat-section .sendingSide {
    max-width: 70%;
    background-color: #333;
    color:#fff;
    margin: 7px 0;
    font-size: 10px;
    padding: 5px;
    border-radius: 7px 7px 0 7px;
    font-weight: 500;
    margin-left: 70px;
    word-wrap: break-word;

}
.bottom-type-send-section button{
    background-color: transparent;
    border: none;

}
.bottom-type-send-section button:active i{
    color:#5DADE2;
}
ul li{
    list-style: none;
    display: block;

}

