/* This is a copy of the CSS that Team Password Manager uses for the Sign In and related screens (password reset, 2FA, SAML and 403 and 404 errors) */
/* You can change it to suit your look and feel */
/* See https://teampasswordmanager.com/docs/custom-branding/ */

@import url("bootstrap.min.css");
@import url("bootstrap-responsive.min.css");

body {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #fff;
}

#login_form {
	max-width: 400px;
	padding: 30px;
	margin: 0 auto;
	border: 4px solid red;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#login_form_error {
	max-width: 500px;
	padding: 30px 30px 40px 30px;
	margin: 0 auto;
	border: 4px solid red;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#login_logo {
	background: url(login-logo.png) no-repeat;
	padding-left: 60px;
	height: 50px;
    background-size: 50px;
	float: left;
}

h1 {
	padding: 5px 0 0 0;
	margin: 0 0 35px 0;
	font-size: 28px;
	color: #2A5DB0;
}

h1 {
  text-indent:-9999px;
}

h1:before {
  text-indent:0;
  content:'Exabyte Systems TPM';
  float:left;
}

#login_form label {
	font-size: 16px;
    height: auto;
}

#login_form input[type="text"], #login_form input[type="password"] {
	font-size: 16px;
    height: auto;
    margin-bottom: 20px;
    padding: 7px 9px;
}

#login_error {
	color: red;
	margin-bottom: 30px;
}

#forgot_password_link {
	margin-bottom: 30px;
}

#label_instructions {
	margin-bottom: 30px;
}

#back_signin_link {
	margin-top: 40px;
}

#tpm_saml_login_link {
	float:right;
	margin-top: 10px;
}

#tpm_normal_login_link {
	margin-top: 30px;
}

/* End of custom_signin.css */
