/* -- */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);

:root
{
  --primary-color: #000000;
  --main-width: 960px;

  --bg-image: url('/img/__shared/access/bg.jpg');
  --welcome-image: none;
}

*
{
  margin: 0px;
  padding: 0px;
}

/* -- */

body
{
  background-color: #F6F6F6;
  color: black;
  font-family: Arial;
  font-family: "Open Sans", Arial;
  font-size: 11px;
  overflow-y: scroll;
}

.main
{
  display: none;
  width: var(--main-width);
  margin-left: auto;
  margin-right: auto;
}

.main_centered
{
  position: absolute;
  height: 757px;
  left: 50%;
  top: 50%;
  margin-left: -480px;
  margin-top: -378px;
}

.break
{
  clear: both;
  width: 100%;
  height: 40px;
}

/* -- */

.header_div
{
  display: none;
  width: var(--main-width);
  height: 42px;
  line-height: 42px;
  background-color: var(--primary-color);
  border-bottom: 1px solid #B1B1B1;
}

/* h1 and h2 deprecated */

.header_div h1, .center_div h2, .header_div p
{
  font-family: Sans-serif;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: white;
}

.header_div p
{
  font-size: 20px;
}

/* -- */

.center_div
{
  width: var(--main-width);
  height: 720px;
  line-height: 22px;

  background-image: var(--welcome-image), var(--bg-image);
  background-size: 0, cover;
  background-position: top;
  background-repeat: no-repeat;

  transition: background-image ease 5s;
}

.center_div_welcome
{
  background-size: contain, cover;
}

.center_div h2
{
  margin-bottom: 24px;
  font-size: 20px;
  color: black;
  text-transform: uppercase;
}

/* -- */

.message_container_div
{
  position: absolute;
  width: var(--main-width);
  top: 40px;
}

.message_div
{
  width: 600px;
  padding: 40px;
  margin-left: auto;
  margin-right: auto;

  background-color: rgba(240,240,240,0.85);
  border: 1px solid var(--primary-color);
  text-align: center;
}

.message_div h4
{
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.message_div_help
{
  width: 790px;
  margin-top: 8px;
  line-height: 23px;
  background: rgba(255,255,255, 0.9);
}

/* -- */

.instruction_msg
{
  font-size: 14px;
  font-style: italic;
  text-align: left;
}

.message_div_help .instruction_msg
{
  font-size: 14px;
  font-style: normal;
}

.error_msg
{
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

/* -- */

form
{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 230px;

  width: 292px;
  height: auto;
  padding: 40px;

  margin: 0px;
  margin-left: auto;
  margin-right: auto;

  background-color: rgba(240,240,240,0.85);
}

.login_form { }
.newpass_form { margin-top: 100px; }
.activation_form { margin-top: 80px; }
.after_activation_form { margin-top: 100px; }

form h3
{
  font-size: 20px;
  line-height: 20px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}

.login_form a
{
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: var(--primary-color);
}

.login_form a:hover
{
  color: black;
}

/* -- */

.footer_div
{
  width: 960px;
  height: 36px;
  border-top: 1px solid #B1B1B1;
  background-color: var(--primary-color);
}

.footer_left_div
{
  float: left;
  margin-left: 20px;
  line-height: 36px;
  color: white;
}

.footer_right_div
{
  float: right;
  display: none;
}

.footer_left_div a
{
  color: white;
  font-weight: normal;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer_left_div a:hover
{
  color: #A0A0A0;
}

.flag_div
{
  float: left;
  width: 33px;
  height: 22px;
  margin-top: 7px;
  margin-right: 10px;
  background-size: cover;
  cursor: pointer;
}

/* -- */

input
{
  width: 230px;
  padding: 12px 12px 12px 50px;
  margin-bottom: 12px;

  border: 0px;
  border-bottom: 1px solid var(--primary-color);

  font-size: 13px;
  font-family: "Open Sans", Arial;
  color: black;

  background-image: none;
  background-size: 24px;
  background-position: 12px 10px;
  background-repeat: no-repeat;
}

input:focus
{
  padding: 12px 12px 12px 50px;
  outline: 0;
  animation: blink 1.0s ease-in-out;
}

.btn
{
  width: 294px;
  height: 46px;
  padding-left: 12px;
  line-height: 18px;

  background-color: var(--primary-color);
  background-image: none;
  color: white;

  font-size: 13px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition: all ease 0.5s;
  cursor: pointer;
}

.btn:focus
{
  padding: 12px 12px 12px 32px;
  background-position: 12px 10px;
  border: 1px solid white;
  color: white;
  animation: none;
}

.btn:hover
{
  padding: 12px 12px 12px 32px;

  background-color: var(--primary-color);
  background-image: none;
  color: white;

  border: 1px solid white;
}

.activate
{
  margin-top: 10px;
}


/* -- */


@keyframes blink
{
  0% { background-color: white; }
  10% { background-color: white; }
  50% { background-color: var(--primary-color); }
  90% { background-color: white; }
  100% { background-color: white; }
}


/* -- */


.username
{
  background-image: url('/img/__shared/icon/email.png');
}

.password
{
  background-image: url('/img/__shared/icon/password.png');
}

.flag_nl
{
  background-image: url('/img/__shared/flag/nl.jpg');
}

.flag_en
{
  background-image: url('/img/__shared/flag/uk.jpg');
}


/* -- */


/*
.login
{
  background-image: url('/img/__shared/icon/login.png');
}

.login:hover
{
  background-image: url('/img/__shared/icon/white/login.png');
}

.activate
{
  background-image: url('/img/__shared/icon/check.png');
  margin-top: 10px;
}

.activate:hover
{
  background-image: url('/img/__shared/icon/white/check.png');
}
*/


/* -- */
