/*!*****************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/index.css ***!
  \*****************************************************************/
@import url(https://fonts.googleapis.com/css?family=Inconsolata|Droid+Sans);
/*!*********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/index.css (1) ***!
  \*********************************************************************/
*{
margin: 0;
box-sizing: border-box;
font-family: 'Inconsolata', sans-serif;
scrollbar-width: thin;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgba(99, 91, 91, 0.088);
}

button {
  cursor: pointer;
}

#current-page {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  background-color: #373434;
  font-weight: 600;
  color: #000;
}

.footer-paragraph {
  margin-right: 20px;
}
/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/page-chat/chatPage.css ***!
  \************************************************************************************/
#chat-container {
  width: 70%;
  height: 60%;
  margin: 40px 0;
  border-radius: 15px;
  box-shadow: 1px 1px 15px 15px rgba(0,0,0,0.5);
}

.container-header-chat {
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border-radius: 15px;
  background-color: rgb(244, 244, 218);
}

#main_message-container {
  max-height: 400px;
  height: 90%;
  display: flex;
}

.search-user {
  width: 90%;
  margin: 5px;
}

.list_users-container {
  width: 30%;
  font-size: 18px;
  font-weight: 600;
  color: rgb(3, 43, 43);
  background-color: rgb(244, 244, 218);
  overflow-y: scroll;
}

li {
  cursor: pointer;
}

li:hover {
  background-color: #c2b9b962;
}

.user-name::marker {
  color: rgb(13, 255, 0);
}

.user-offLine::marker {
  color: red;
}

.message_chat-container{
  display: flex;
  flex-direction: column;
  width: 70%;
  background-color: pink;
}

.user_chat-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  height: 40px;
  font-size: 22px;
  font-weight: 600;
  background-color: #fff;
}

.message-text-container{
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: scroll;
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
}

.text-container {
  width: 50%;
  background-color: rgb(98, 232, 244);
  border-radius: 15px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.chat-text {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 2px 5px;
  background-color: #fff;
}

.send-message-form {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: rgb(244, 244, 218);
}

#message {
  border-radius: 8px;
  padding: 5px;
  width: 250px;
  margin-right: 20px;
}

.button_submit {
  padding: 10px 20px;
  margin: 10px 0;
  color: #010a00;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #9dff81;
}

@media screen and (max-width: 750px){
  #chat-container {
    width: 90%;
  }

  .text-container {
    width: 70%;
  }

  #message {
    width: 200px;
    margin-right: 5px;
  }
}

@media screen and (max-width: 500px){
  #message {
    width: 150px;
    margin-right: 5px;
  }

  .button_submit {
    padding: 10px 5px;
  }
}
/*!************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/page-info/pageInfo.css ***!
  \************************************************************************************/
.container-info {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: sp;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  border: 2px solid black;
  padding: 20px;
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
}

.infologinBtn, .to_info-btn {
  padding: 10px 20px;
  margin: 20px 0;
  color: #010a00;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #2cbbe7;
}

.rss-logo_img {
  width: 80px;
  height: 40px;
}
/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/pages/page-login/login.css ***!
  \**********************************************************************************/
.login-form_container {
  width: 370px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 1px 1px 15px 15px rgba(0,0,0,0.5);
  background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9);
}

.button_submit:hover {
  background-color: #c1f5b3;
}

