body{
    margin: 0;
    font-family: Montserrat;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
}
.main {
    display: none;
    justify-content: center;
    height: 100vh;
}
.left > img {
    max-width: 70%;
}
.right {
    flex: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3f3d56;
}
.left {
    flex: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #221933;
}
.login-box{
    background: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 60vh;
    width: 60vh;
    -webkit-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.55);
    border-radius: 10px;
}
.login-box > h2{
    font-size: 30px;
}

.login-box > div{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 25vh;
    width: 100%;
}

.btn {
    font-size: 18px;
    font-weight: bolder;
    padding: 10px;
    width: 75%;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
}


.ml2 {
  font-weight: 900;
  font-size: 3.5em;
  color: white;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}



.google-button-icon, .facebook-button-icon {
    display: inline-block;
    vertical-align: middle;
    margin: 8px 0 8px 8px;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    margin-right: 10px;
}

.facebook-button-icon{
    margin-top: -9px;
}

.google-signin {
    padding: 5px;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-signin:hover{
    background: #fdfdfd;
}
.google-signin:active{
    background: #fbf7f4;
}

.facebook-signin {
    background: #3b5998;
    color: white;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
}
.facebook-signin:hover{
    background: #325090;
}
.facebook-signin:active{
    background: #294580;
}
header{
    display: none;
}

/*Mobile CSS*/

@media only screen and (max-width: 900px) {
  .left{
    display: none;
  }
  .right{
    background-image: url("images/undraw_illustration.svg");
    background-size: contain;
  }
  .chat-box{
    width: 100%;
  }
  .main{
    flex-direction: column;
  }
  .ml2{
    font-size: 30px;
  }
  .login-box{
    width: 90%;
    height: 50%;
  }
  .btn{
    width: 80%;
  }
  header {
    background: #1f2747;
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    z-index: 99;
    }

}