@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
  background-image: url("images/bg.jpg");
  background-size: cover;
  background-color: #444444;
  background-blend-mode: multiply;
}

.landing {
  width: 100%;
  /*height: 100vh;
  background-image: url("images/bg.jpg");
  background-size: cover;
  background-color: #444444;
  background-blend-mode: multiply;
  */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.formulario {
    padding: 50px 15px;
    }

.container {
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding:8vh 50px 0;
  position:relative;
  z-index:10;
}

.logo-icon {
  max-width: 250px;
  width: 100%;
}

.logo-text {
  max-width: 350px;
  width: 100%;
}

.slogan {
    font-weight: 700;
    color:#fff;
    font-size: clamp(18px,calc(18px + (32 - 18) * (100vw - 320px) / (1920 - 320)), 32px);
    margin:-20px 0 0;
}

.bottom {
  max-height: 450px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  margin:auto 0 0;
  position:relative;
  z-index:1;
}

.bottom img {
    width:100%;

}

#chat {
    display:none;
    visibility: hidden;
    opacity: 0;
    animation: 500ms ease all;
    background-color: white;
    width:100%;
    height:100%;
}


.msg-container {
    width: 100%;
    height: 100%;
    background-color: white;
}
.msgheader {
    width: 100%;
    height: 30px;
    border-bottom: 1px solid #CCC;
    text-align: center;
    padding: 15px 0px 5px;
    font-size: 20px;
    font-weight: normal;
}
.msg-area {
    height: calc(100vh - 200px);
    width: 100%;
    background-color:#FFF;
    overflow-y: scroll;
}
.msginput {
    padding: 5px;
    margin: 10px;
    font-size: 14px;
    width: 90%;
    outline: none;
}
.msgbottom {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0px;
    border-top: 1px solid #CCC;
    background-color: #EBEBEB;
}
#whitebg {
    width: 100%;
    height: 100%;
    background-color: #FFF;
    overflow-y: scroll;
    opacity: 0.6;
    display: none;
    position: absolute;
    top: 0px;
    z-index: 1000;
}
#loginbox {
    width: 95vw;
max-width: 500px;
padding: 25px 0;

    border: 1px solid #CCC;
    background-color: #FFF;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    display: none;
}
h1 {
    padding: 0px;
    margin: 20px 0px 0px 0px;
    text-align: center;
    font-weight: normal;
}
button {
    background-color: #43ACEC;
    border: none;
    color: #FFF;
    font-size: 16px;
    margin: 0px auto;
    width: 80%;
padding: 15px;
}
.buttonp {
    width: 90%;
    margin: 0px auto;
    text-align: center;
}

.msg {
    margin: 10px 10px;
    background-color: #f1f0f0;
    max-width: calc(45% - 20px);
    color: #000;
    padding: 10px;
    font-size: 14px;
}
.msgfrom {
    background-color: #0084ff;
    color: #FFF;
    margin: 10px 10px 10px 55%;
}
.msgarr {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f1f0f0;
    transform: rotate(315deg);
    margin: -12px 0px 0px 45px;
}
.msgarrfrom {
    border-bottom: 8px solid #0084ff;
    float: right;
    margin-right: 45px;
}
.msgsentby {
    color: #8C8C8C;
    font-size: 12px;
    margin: 4px 0px 0px 10px;
}
.msgsentbyfrom {
    float: right;
    margin-right: 12px;
}