/*@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
body {
    font-family: 'Ubuntu', sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    background-image: url(/assets/img/subtle-carbon.png);
}
::-webkit-scrollbar {
    height: 12px;
    width: 8px;
    background: #DDD;
}

::-webkit-scrollbar-thumb {
    background: #999;
}
* {
    scrollbar-width: thin;
    transition: 0.3s;
}
  .login-center {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
}
.copyright {
	float: left;
	width: 100%;
	display: flex;
	justify-content: center;
}
.copyright-container {
	float: left;
	width: 320px;
}
.copyright-container > p:nth-child(1) {
	text-align: center;
	font-size: 10px;
	color: #999;
}
.result-container {
	float: left;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.result-container p {
	float: left;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	border-radius: 5px;
}
.result-container p i {
	margin-right: 10px;
}
.danger { background-color: #f44336; }
.success { background-color: #04AA6D; }
.info { background-color: #2196F3; }
.warning { background-color: #ff9800; }
  form {
    float: left;
    width: 250px;
    box-shadow: 0 0 5px 0 #CCC;
    border-radius: 5px;
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
.login-header {
	float: left;
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 5%;
	margin-bottom: 10px;
}
  .login-header img {
	height: 30px;
}
  .login-row {
    float: left;
    width: 90%;
    box-shadow: 0 0 0 1px #CCC;
    margin-bottom: 5px;
    border-radius: 5px;
    overflow: hidden;
  }
  .login-row i {
      float: left;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f8f8f8;
      color: #999;
  }
  .login-row input {
    float: left;
    width: calc(100% - 60px);
    padding: 0 10px;
    border: 0;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #999;
  }
  .login-row input:focus {
    outline: 0px;
    background-color: #f8f8f8;
  }
  
  .login-row.row-buttons {
      box-shadow: unset;
      margin-bottom: 5%;
  }
  .login-row.row-buttons button {
      float: left;
      border: 0;
      background-color: #f8f8f8;
      color: #999;
      height: 40px;
      width: 100%;
      cursor: pointer;
      font-weight: 700;
      transition: 0.3s;
  }
    .login-row.row-buttons button:hover {
      background-color: #f1f1f1;
      color: #555;
    }