/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 4, 2018, 4:42:08 PM
    Author     : truep
*/

* {
    box-sizing: border-box;
    font-family: sans-serif;
}

div {
    display: block;
}

body {
    background-color: #e8e8e8;
}

.page-container {
    background-color: white;
    margin: 0 auto;
}
.fontAboveForm {
    margin-top: 70px;
    font-family: Arial;
    margin-left: 7px;
}

.top-gap {
    height: 95px;
    z-index: 1000;
    position: relative;
}
.logo-img {
    margin-left: 10%;
    border-radius: 5px;
}
.top-bar {
    background-color: #233d75;
    height: 35px;
    text-align: right;
    color: white;
    line-height: 35px;
    padding: 0 10px;
}
.tp-btn {
    cursor: pointer;
}
.form-container {
    background: url('../images/new.jpg') no-repeat center;
    background-size: cover;
    padding: 1px 10%;
    height: 860px;
}
/*
@media only screen and (max-width: 768px) {
    .tp-reg-container {
        width: 100%;
        padding: 20px;
        font-size: 20px;
        background-color: #f7f7f7;
        position: relative;
        min-height: calc(100vh - 40px);
    }
}
@media (min-width: 769px ) {*/
    .tp-reg-container {
        width: 500px;
        margin: 20px 0;
        padding: 10px 50px 20px 50px;
        font-size: 16px;
        background-color: white;
        box-shadow: 1px 1px 20px 1px rgba(0,0,0,0.2);
        position: relative;
        border: solid 1px #1f1f1f;
        border-radius: 6px;
    }
/*}*/

@media (max-width: 550px ) {
    .tp-reg-container {
        width: 300px;
        margin: 20px 0;
        padding: 10px 50px 20px 50px;
        font-size: 12px;
        background-color: white;
        box-shadow: 1px 1px 20px 1px rgba(0,0,0,0.2);
        position: relative;
        border: solid 1px #1f1f1f;
        border-radius: 6px;
    }
}
.tp-reg-container label {
    margin: 10px 0 0px 0;
    font-size: 0.9em;
    color: #444;
    display: block;
    font-weight: normal;
}
.tp-reg-container .tp-label {
    margin: 10px 0 0px 0;
    font-size: 0.9em;
    color: #444;
    display: block;
    font-weight: normal;
    line-height: 1.4em;
}

.tp-reg-container input[type="text"],
.tp-reg-container input[type="password"],
.tp-reg-container select {
    width: 60%;
    border: 1px solid #aaa;
    padding: 4px;
    font-size: 1em;
    margin: 6px 0;
}
.tp-reg-container .status {
    padding: 10px;
    font-size: 1em;
    text-align: left;
    transition: all 0.1s linear;
}
.tp-reg-container .status.none {
/*    display: none;*/
    height: 0;
    padding: 0;
}
.tp-reg-container .status.ok {
    background-color: lightgreen;
    color: green;
    height: auto;
}
.tp-reg-container .status.error {
    background-color: lightpink;
    color: red;
    height: auto;
}
.tp-reg-container .msg {
    font-size: 1em;
    margin: 12px 0;
    color: #444;
}
.step-indicator {
    display: flex;
    flex-direction: row;
    margin: 0 10px 10px 10px;
    align-items: center;
}
.step-indicator .node {
    width: 1.4em;
    height: 1.4em;
    border-radius: 0.7em;
    border-width: 2px;
    background-color: white;
    border-style: solid;
    border-color: #ccc;
}
.step-indicator .line {
    height: 2px;
    background-color: #ccc;
    flex: 1;
}
.step-indicator .node.active {
    border-color: dodgerblue;
}
.step-indicator .line.active {
    background-color: dodgerblue;
}
.tp-reg-container .title {
/*    margin: 30px 0 20px 0;*/
/*    text-align: center;*/
/*    font-size: 1.6em;*/
    color: #233d75;
}
.tp-reg-container input[type="submit"] {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 10px;
    color: white;
    background: #233d75;
    font-size: 1em;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 10px 1px rgba(0,0,0,0.2);
}
.loading-anim {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    display: none;
    z-index: 200;
}
@keyframes rotate {
    to {transform: rotate(360deg);}
}
.loading-anim div {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-top: 80px;
    border-style: solid;
    border-width: 4px;
    border-color: dodgerblue;
    border-top-color: #ccc;
    animation: rotate 0.6s linear infinite;
    
}
.otp-container {
    text-align: center;
}
.otp-container input[type="text"] {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    color: #222;
    width: 100%;
}
.otp-container input[type="button"] {
    width: 140px;
    padding: 6px;
    background-color: dodgerblue;
    color: white;
    font-size: 1.2em;
    margin: 10px;
    cursor: pointer;
    border: none;
}
.otp-container .label {
    font-size: 1em;
    color: #888;
    margin: 20px 20px 20px 20px;
}
.password-rule {
    font-size: 0.8em;
    color: brown;
    background-color: #fedce1;
    padding: 10px;
}
#processing-ind {
    text-align: center;
    margin: 10px 0;
    display: none;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 48px;
  height: 48px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin: -3px 0 0 -3px;
  background-color: #337ab7;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}