* {
  box-sizing: border-box;
}
body {
  font-family: Arial;
  color: #333;
  font-size: 15px;
  height: 100vh;
  padding: 0;
}
a {
  color: teal;
}
a:hover {
  color: rgb(1, 90, 90);
}

.container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row {
  border: 1px solid #d7dcde;
  border-radius: 5px;
  box-shadow: 5px 5px 15px -6px rgba(0, 0, 0, 0.77);
}

.row form {
  margin: 0;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}

#form-head {
  color: #191919;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 1rem;
}

.brand {
  line-height: 2rem;
  font-weight: bold;
  padding-top: 50px;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  min-height: 60px;
}
.brand .logo {
  width:80px;
    height: 80px;
    border-radius: 50%;
    background: #ED2553;
    position: absolute;
    top: -40px;
   left: 50%;  
    transform: translate(-50%, 0);  
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; 
}
.brand .logo svg {
  width: 85%;
  height:85%;
  fill:#fff;
}

.login {
  line-height: 1.8em;
  color: #333;
  padding: 0 10px 10px 10px;
}

.login .label {
  color: #888888;
}
.login p {
  line-height: normal;
}

.input-box {
  padding: 8px;
  border: #ccc 1px solid;
  border-radius: 4px;
  width: 100%;
  font-size: 1.1em;
}

.btnLogin {
  padding: 13px;
  background-color: #5d9cec;
  color: #f5f7fa;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  border: #5791da 1px solid;
  font-size: 1.1em;
}

.btnLogin:hover {
  background-color: #09f;
}

.response-text {
  max-width: 380px;
  font-size: 1.5em;
  text-align: center;
  background: #fff3de;
  padding: 42px;
  border-radius: 3px;
  border: #f5e9d4 1px solid;
  font-family: arial;
  line-height: 34px;
  margin: 15px auto;
}

/* smartphone portrait */

@media screen and (min-width: 670px) {
  .row {
    max-width: 400px;
  }
  .login {
    padding: 0 30px 30px 30px;
  }
}

/* === required styles for form-validate.js ======== */

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
.has-error .help-block {
  color: #a94442;
  font-style: italic;
  font-size: 85%;
}
.has-error input,
.has-error textarea {
  border-color: #a94442;
}

/* ---------------- notification ------------ */

div.message {
  position: relative;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background: #bbb;
  color: #fff;
  transition: all 0.5s ease;
  border-radius: 5px;
  font-family: sans-serif;
}
div.message h3 {
  color: inherit;
  font-family: inherit;
  font-size: 2rem;
  margin: 0 0 1rem;
}

div.message.information {
  background: #39b;
}
div.message.warning {
  background: #e74;
}
div.message.success {
  background: #5a6;
}
div.message.announcement {
  background: #ea0;
}
div.message.error {
  background: tomato;
}
