@charset "utf-8";
@font-face{
	font-family: 'Inter-Bold';
	src: url('../fonts/Inter-Bold.eot');
	src: url('../fonts/Inter-Bold.woff');		
	font-display: swap;
}

@font-face{
	font-family: 'Inter-Regular';
	src: url('../fonts/Inter-Regular.eot');
	src: url('../fonts/Inter-Regular.woff');		
	font-display: swap;
}
*{cursor:default;box-sizing: border-box;}
html{overflow-x:hidden;height: 100%}
body{font-family:"Inter-Regular"; font-size:16px;line-height:21px;color:#000;padding:0;margin:0;display: flex;flex-direction: column;height: 100%}
input,select,textarea,button{outline:none;-webkit-border-radius:0;color:#000;cursor:pointer;padding:0}
h1,h2,h3,h4,h5,p,ol,ul{margin:0;padding:0;font-weight:400;color:#000}
button{border:0;cursor:pointer}
i{font-style:normal}
a{text-decoration: none;cursor:pointer}
li{list-style-type: none;}
.resize{
	position: relative;
	height: 400px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.chatcity-login{
	height: 100vh;
}
.chatcity-login-container{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.chatcity-login-content{
	width: 200px;
}
.chatcity-login-head{
	text-align: center;
	margin-bottom: 10px;
}
.chatcity-login-input{
	display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.chatcity-login-input::placeholder {
  color: #212529;
  opacity: 0.4;
}
.chatcity-login-input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #bdbdbd;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25);
}
.chatcity-login-block{
	margin-bottom: 10px;
}
.chatcity-login-block-msg{
	font-size: 12px;
	color: #721c24;
}
.chatcity-login-button {
  text-decoration: none;
  border: 1px solid rgb(146, 148, 248);
  position: relative;
  overflow: hidden;
  width: 100%;
  background: none;
  padding: 11px 0;
  font-size: 16px;
  border-radius: 0.25rem;
  color: #313131;
}
.chatcity-login-button:hover {
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
}
.chatcity-login-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(146, 148, 248, 0.4),
    transparent
  );
  transition: all 650ms;
}
.chatcity-login-button:hover:before {
  left: 100%;
}
