/* Notification bar */
.notification-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
  background: #FF6961;
  text-align: center;
  color: #FFFFFF;
  font-family: sans-serif;
  font-weight: lighter;
  font-size: 14px;
  z-index: 10;
}

.notification-top-bar p {
  padding: 0;
  margin: 0;
}

/* Body: use flexbox to center login box */
body {
  background: #D7DDE5;
  font-family: 'Verdana', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;  
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
  height: 100vh;           /* full viewport height */
  margin: 0;
}

/* Login container */
.login-page {
  width: 360px;
  padding: 0;
  margin: 0;
}

/* Form box */
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  width: 100%;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 8px;
  margin: 0 auto;
}

/* Logo inside form */
.form img {
  max-width: 200px;
  display: block;
  margin: 0 auto 20px auto;
}

/* Optional message text */
.form p {
  margin-bottom: 20px;
  color: #333;
  font-size: 14px;
}

/* Microsoft login button */
.ms-login-btn {
  display: inline-flex;
  align-items: center;    /* vertical alignment */
  justify-content: center;
  border: 1px solid #d1d1d1;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 15px;
  line-height: 1;         /* fix vertical alignment of text with logo */
}

.ms-login-btn img {
  width: 22px;
  height: 22px;
  margin-bottom : 0px;	
  margin-right: 10px;
  display: block;
}

.ms-login-btn:hover {
  background-color: #f3f3f3;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.ms-login-btn:active {
  background-color: #e8e8e8;
}

/* Links */
a {
  color: #0067ab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Input fields (if used) */
.form input[type="text"], 
.form input[type="password"] {
  font-family: 'Verdana', sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

/* Submit buttons (if used) */
input[type='submit'] {
  padding: 10px 25px 8px; 
  color: #fff; 
  background-color: #0067ab; 
  text-shadow: rgba(0,0,0,0.24) 0 1px 0; 
  font-size: 16px; 
  box-shadow: rgba(255,255,255,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0; 
  border: 1px solid #0164a5; 
  border-radius: 2px; 
  margin-top: 10px; 
  cursor:pointer;
}

input[type='submit']:hover {
  background-color: #024978;
}

/* Clearfix (if used) */
.clearfix:before, .clearfix:after { 
  content: ""; display: table; 
}

.clearfix:after { 
  clear: both; 
}