body {
  margin:0px;
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

.form-signin{
    max-width: 330px;
    padding: 3px;
    margin: 0 auto;
}
.form-signin .form-signin-heading, .form-signin .checkbox{
    margin-bottom: 10px;
}
.form-signin .checkbox{
    font-weight: normal;
}
.form-signin .form-control{
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin .form-control:focus{
    z-index: 2;
    border-color:#FFFFFF;
}
.form-signin input[type="text"]{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.form-signin input[type="password"]{
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-signin input[type="password"].nomargin{
	margin-bottom: 0px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.form-check{
  color: white;
  margin: 5% 0
}
.form-check-input{
  width: 10%;
  margin: 0 !important;
  display: inline-block;
  vertical-align: middle;
  accent-color: #55A1A9;
}
.form-check-label{
  margin: 0 0 0 5%;
  width: 85%;
  vertical-align: middle
}
.account-wall{
    margin-top: 20px;
    padding: 40px 0px 20px 0px;
    background-color: #f7f7f7;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.signup-wall{
	margin-top: 20px;
    padding: 20px 0px 20px 0px;
    background-color: #f7f7f7;
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
}
.login-title{
    color: #222;
    font-size: 18px;
    font-weight: 400;
    display: block;
}
.agb-link{
    color: #222;
    font-size: 14px;
    font-weight: 400;
    display: block;
}
.normal-text{
    color: #222;
    font-size: 18px;
    font-weight: 400;
    display: block;
}
.logo-img{
    max-width: 100%;
}
.new-account{
    display: block;
    margin-top: 10px;
}
h1.error-message{
    color: red;
}
ul.user-details{
    list-style: none;
}
.btn-shared{
   width: 40%;
   margin: 5%;
   background-color: #55A1A9
}
.blur-input{
    opacity: 1;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
    border-color: transparent;
    color: #CCCCCC;
}
.select-input{
    opacity: 1;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
    color: #333333;
    height: 20px;
}
.nonempty-input{
    opacity: 1;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
    border-color: transparent;
    color: #AAAAAA;
}
.alert{
    text-align: center;
    padding: 1em;
    z-index: 111;
    margin: 0em auto;
    width: 290px;
    height:50px;
    outline-color: red;
    -webkit-animation: shake .5s linear;
    animation: shake .5s linear;
}
/* Für das validate alert*/
 @-webkit-keyframes shake {
    8%, 41% {
        -webkit-transform: translateX(-10px);
    }
    25%, 58% {
        -webkit-transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-5px);
    }
    92% {
        -webkit-transform: translateX(5px);
    }
    0%, 100% {
        -webkit-transform: translateX(0);
    }
}
@keyframes shake {
    8%, 41% {
        transform: translateX(-10px);
    }
    25%, 58% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-5px);
    }
    92% {
        transform: translateX(5px);
    }
    0%, 100% {
        transform: translateX(0);
    }
}
#alertmessagebox {
    height: auto;
}
/*Confirmbox*/
#confirmbox {
    background-color: #F3F5F6;
    color: #000000;
    border: 1px solid #aaa;
    position: fixed;
    width: 330px;
    height: auto;
    top: 20%;
    box-sizing: border-box;
    text-align: center;
    /*FadeIn für ConfirmBox*/
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
        animation: fadein 1s;
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#confirmbox > .btn.btn-shared{
    margin:1em 1em 0 1em;
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 12px;
    border: 1px solid #aaa;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}
/*blendet bei Anzeige der ConfirmBox das Formular in den Hintergrund*/
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #444;
    opacity: 0.4;
}
