@import url(fira/fira.css);
@keyframes appear {
    from { opacity: 0.0; }
    to { opacity: 1.0; }
}
@keyframes blinkingBackground {
    0% { background: white; }
    50% { background: #c0fff8; }
    100% { background: white; }
}
.hint {
    position: absolute;
    left: 20px;
    top: 125px;
    display: block;
    max-width: 25%;
    line-height: 1.5;
}
.hint:after {
    animation-name: appear;
    animation-duration: 4s;
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom-color: #00bdb7;
    border-top: 0;
    border-left: 0;
    margin-left: -10px;
    margin-top: -20px;
}
.hint div {
    animation-name: appear;
    animation-duration: 4s;
    padding: 10px;
    width: 100%;
    border: 1px solid #00bdb7;
    border-radius: .4em;
    background-color: white;
}
.hint div:first-child {
    animation: appear 4s,  blinkingBackground 2s 5;
}
.topbar { 
    background-color: #00bdb7; 
    width: 100%;
    text-align: right;
}
.topbar a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    margin-right: 20px;
}
.topbar a:hover {
    text-decoration: underline;
}
.topbar span {
    color: white;
    font-weight: 500;
    text-decoration: none;
    position: absolute;
    left: 100px;
    top: 3px;
}
.topbar form {
    display: inline-block;
    margin: 3px;
    padding-bottom: 1px;
}
.topbar img {
    height: 100px;
    position: absolute;
    top: 5px;
    left: 10px;
}
body {
    font-family: "Fira Sans", Arial, sans-serif;
    margin: 0px;
    background: #e9e9e9;
}
h1 {
    color: darkorange;
    padding-bottom: 5px;
    border-bottom: 1px solid lightgray;
}
h3 {
    margin-bottom: 0px;
}
.message {
    color: red;
    padding-bottom: 20px;
}

.content {
    margin: 50px auto;
    width: 60%;
    padding: 25px 50px 100px 25px;
    color: black;
    background-color: white;
    border-top: 5px solid #00bdb7;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
a {
    color: #00bdb7;
    font-weight: 500;
    text-decoration: none;
}
a:hover {
    color: darkorange;
    text-decoration: underline;
}
/* Pen Title */
.pen-title {
    padding: 50px 0;
    text-align: center;
    letter-spacing: 2px;
}
.pen-title h1 {
    color: darkorange;
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 300;
}
.pen-title span {
    font-size: 12px;
}
.pen-title span .fa {
    color: #00bdb7;
}
.pen-title span a {
    color: #00bdb7;
    font-weight: 600;
    text-decoration: none;
}

div.postinfo {
    font-size: 80%;
    color: gray;
    padding-bottom: 10px;
}
table.logon {
    margin: 50px auto;
}



/* Form Module */
.form-module {
    position: relative;
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    /*border-top: 5px solid #33b5e5;*/
    border-top: 5px solid #00bdb7;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}
.form-module.form-module-600 {
    max-width: 600px;
}
.form-module .toggle {
    cursor: pointer;
    position: absolute;
    top: -0;
    right: -0;
    /*background: #33b5e5;*/
    background: #00bdb7;
    width: 30px;
    height: 30px;
    margin: -5px 0 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
}
.form-module .toggle .tooltip {
    position: absolute;
    top: 5px;
    right: -65px;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    width: auto;
    padding: 5px;
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
}
.form-module .toggle .tooltip:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid rgba(0, 0, 0, 0.6);
}
.form-module .form {
    display: none;
    padding: 40px;
}
.form-module .form:nth-child(2) {
    display: block;
}
.form-module h2 {
    margin: 0 0 10px;
    /*color: #33b5e5;*/
    color: darkorange;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}
.form-module input {
    outline: none;
    display: block;
    width: 100%;
    border: 1px solid #d9d9d9;
    margin: 0 0 20px;
    padding: 10px 15px;
    box-sizing: border-box;
    font-weight: 400;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.form-module input:focus {
    border: 1px solid #00bdb7;
    border: 1px solid ;
    color: #333333;
}
.form-module button {
    cursor: pointer;
    background: #00bdb7;
    width: 100%;
    border: 0;
    padding: 10px 15px;
    color: #ffffff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.form-module button:hover {
    background: #178ab4;
}
code {
    background-color: #eee;
    border: 1px solid #999;
    display: block;
    padding: 15px;
    line-height: 1.5em;
    word-wrap: break-word;         /* All browsers since IE 5.5+ */
    overflow-wrap: break-word;     /* Renamed property in CSS3 draft spec */
}
.form-module .cta {
    background: #f2f2f2;
    width: 100%;
    padding: 15px 40px;
    box-sizing: border-box;
    color: #666666;
    font-size: 12px;
    text-align: center;
}
.form-module .cta a {
    color: #333333;
    text-decoration: none;
}

th {
    padding-right: 10px;
}
