html,
body,
input,
form {
	font-family: Helvetica;
	font-size: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
  margin: 50px auto;
  width: 640px;
}
 
.login {
  position: relative;
  margin: 0 auto;
  padding: 20px 20px 20px;
  width: 310px;
  border: 1px solid #AAAAAA;
  border-top-width: 0px;
}

p.submit {
  text-align: right;
}
 
:-moz-placeholder {
  color: #c9c9c9 !important;
  font-size: 13px;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  font-size: 13px;
}

.container {
  margin: 50px auto;
  width: 640px;
}
 
.login p.login_fields {
  margin: 10px 0 0;
}

input#port {
	width: 35px;
}

#station,
#host {
	display: inline;
}
 
.login p:first-child {
  margin-top: 0;
}
 
.login input[type=text], .login input[type=password] {
  width: 300px;
}

.submit_button {
	min-height: 28px;
	height: auto;
	min-width: 72px;
	width: auto;
	border: 1px solid #AAAAAA;
	border-radius: 1px;
	background: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
	color: #222222;
	line-height: 14px;
	cursor: pointer;
	position: relative;
}

.submit_button_text {
	transition: all 0.2s;
}
.submit_button--loading .submit_button_text {
  visibility: hidden;
  opacity: 0;
}

.submit_button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #0000008c;
    border-radius: 50%;
    animation: submit_button-loading-spinner 1s linear reverse infinite;
}

@keyframes submit_button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

div#login-header {
    width: 340px;
    background-color: #1B76A9;
	border: 1px solid #1B76A9;
	border-bottom-width: 0px;
    margin: 0 auto;
    padding: 10px 0 10px 10px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
}

div#warningMessageAboutPopupsBanner {
	background-color: #FFCE54;
	width: auto; 
	height: 20px; 
	font-size:12px;
	line-height: 20px;
	text-align: center;
}

