.layout-container {
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  box-shadow: -5px 3px 13px 0px rgba(71, 71, 71, 0.09);
  width: 600px;
}

.join-container {
  padding: 40px;
}

.join-container__title {
  font-size: 32px;
  font-weight: normal;
}

.jform {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.jform__label {
  font-size: 14px;
  font-weight: bold;
}

.jform__input {
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  margin-top: 4px;
  height: 24px;
  font-size: 14px;
  padding: 8px 12px;
  width: -webkit-fill-available;
}

.jform__btn {
  align-self: flex-end;
  background-color: var(--green);
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  margin-top: 40px;
  padding: 0 40px;
  text-decoration: none;
}

.im-container {
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  height: 40px;
}

.elements {
  display: flex;
  justify-content: space-between;
  padding: 11px 15px;
}

.elements__input {
  border: none;
  color: var(--grey-message);
  font-size: 14px;
  flex-grow: 1;
  outline: none;
}

.elements__input::placeholder {
  color: var(--grey-message);
}

.elements__btn {
  background-color: white;
  border: none;
  color: var(--grey-message);
  font-size: 14px;
}

.typers {
  color: var(--grey-typing);
  font-size: 12px;
  margin-top: 8px;
}

.avatar-container {
  margin-right: 14px;
}

.avatar-container img {
  border-radius: 6px;
  height: 40px;
  width: 40px;
}

.message-container {
  display: flex;
  margin-bottom: 24px;
}

.msg-content__author {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.msg-content__date {
  color: var(--grey-date);
  font-size: 12px;
  font-weight: normal;
  margin-left: 8px;
}

.msg-content__texts p {
  font-size: 14px;
  margin-bottom: 4px;
}

.messages-container {
  max-height: 80vh;
  overflow-y: auto;
}

.message-type img {
  max-width: 80%;
}

.cr-container {
  padding: 24px;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}
body {
  line-height: 1;
}
menu, ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Global Colors */
:root {
  --green: #ff8202;
  --grey-border: #d0d0d0;
  --grey-date: #8b8b8b;
  --grey-message: #bababa;
  --grey-typing: #676767;
}

.container {
  align-items: center;
  display: flex;
  height: 100vh;
  justify-content: center;
}


/*# sourceMappingURL=main.css.map*/