 @import url(https://fonts.googleapis.com/css?family=Roboto:300); /* include Roboto font from Google fonts */

  #lms_widget_wrapper {
    text-align:center; 
	height: 100%;  
  }

  #lms_widget_container {
    /* width: 400px; */ /*400px;*/ /* width of box */
    height: auto;
    border: 2px solid #c6c5c5; /* border thickness, border style, border color */
    background:#fff; /* background color */
    font-family: 'RobotoLightNew', 'Ubuntu', Helvetica, sans-serif; /* font family */
    text-align:left; /* general text alignment */
    font-size:16px; /* general font size */
	font-weight: normal;
    color:#222; /* general text color */
    border-radius: 4px;
	display: inline-block;
	position:relative
  }

  #lms_widget_header {
    background: #222222; /* background color of heading section */
    width: 100%; /* width of widget */
    border-bottom: 1px solid #c6c5c5; /* header bottom border thickness, style and colour */
  }

  #lms_widget_container h1 {
    padding: 15px 8px 14px 8px; /* positioning of header */
    font-size: 19px; /* font size */
    font-weight: normal; /* font weight */
    margin: 0;
    color:#fff; /* text color */
    text-align:left; /* text alignment */
  }

  #lms_widget_inner {
    margin: 25px;  /* widget inner spacing */
  }

  #lms_widget_container input[type="text"], #lms_widget_container input[type="password"] {
    margin: 8px 0 18px; /* space around input boxes */
    padding: 12px 10px 11px; /* space within input boxes */
    color:#222; /* input text color */
    font-family: 'Roboto', Helvetica, Arial, sans-serif; /* font family */
    font-size:16px; /* font size */
    border-radius: 5px; /* rounded corner size */
    box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1); /* inner shadow */
    width: 100%;  /* width  100%; */
    -moz-box-sizing: border-box; /* don't adjust */
    box-sizing: border-box; /* don't adjust */
	position:relative
  }

  .lms_widget_border {
    border: 1px #c6c5c5 solid; /* border around input field, width, color, style */
  }

  #lms_widget_container a {
    color: #a7a7a7; /* link color */
    font-size: 15px; /* font size */
  }

  #lms_widget_container a:hover {
    color:#5e5f5f; /* rollover link color */
    text-decoration:underline;
  }

  #lms_widget_container button {
    outline:none;
    border: 0;
    color: #fff;  /* color of button text */
    margin: 0 0 14px 0; /* space around button */
    padding: 12px 3px; /* space within button */
    display: block;
    width: 100%;  /* width */
    font-family: 'Roboto', Helvetica, Arial, sans-serif; /* font family */
    font-size:16px; /* font size */
    background: #000000; /* background color */
    border-radius: 5px; /* rounded corner size */
    cursor: pointer;
  }

  #lms_widget_container button:hover {
    background: #b4b4b4; /* button rollover color */
  }

  #lms_widget_container input[type="checkbox"] {
    position: relative; /* checkbox alignment */
    top: -1px; /* checkbox top alignment */
    margin-right: 5px;  /* gap to the right of the checkbox */
  }

  #lms_widget_container label[for="remember"] {
    font-size: 15px; /* 'remember me' font size */
  }