@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
  width: 360px;
  padding: 8% 0 0;
  margin: auto;
}

.form {
  border-radius: 10px;
  box-shadow: 0px 4px 30px 30px rgba(29, 7, 7, 0.20);
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  /* margin: 0 auto 100px; */
  padding: 35px;
  text-align: center;
}

.form input {
  border-radius: var(--radius-rounded-sm, 4px);
  border: 1px solid rgba(180, 180, 180, 0.30);
  background: #EFEFEF;
  font-family: Helvetica;
  outline: 0;
  /* background: #f2f2f2; */
  width: 100%;
  /* border: 0; */
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

.form button {
  width: 339px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-rounded-sm, 4px);
  background: #481414;
  font-family: Helvetica;
  text-transform: uppercase;
  outline: 0;
  background: #481414;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.form img {
  width: 30%;
  height: auto;
  display: inline-flex;
  margin-bottom: -20px;
}

.form button:hover,
.form button:active,
.form button:focus {
  background: #ce210b;
}


body {
  background: #481414;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #481414, #481414);
  background: -moz-linear-gradient(right, #481414, #481414);
  background: -o-linear-gradient(right, #481414, #481414);
  background: linear-gradient(to left, #481414, #481414);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-title {
  color: #481414;
  text-align: center;
  font-family: Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.username-title {
  color: #000;
  font-family: Helvetica;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 5px;
}

.pw-title {
  color: #000;
  font-family: Helvetica;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  margin-bottom: 5px;
}