*, *:before, *:after
{
    box-sizing: border-box;
}

html
{
    overflow-y: scroll;
}

body
{
    background: #ffffff;
    font-family: 'Encode Sans', sans-serif;

}

a
{
    text-decoration: none;
    color: #000000;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

a:hover 
{
    color: #c90086;
}

.form
{
    background: rgba(255, 255, 255, 0.7); 
    padding: 30px;
    max-width: 450px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
}

.tab-group
{
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.tab-group:after
{
    content: "";
    display: table;
    clear: both;
}

.tab-group li a
{
    display: block;
    text-decoration: none;
    padding: 10px;
    background: rgba(148, 148, 148, 0.582);
    color: #ffffff;
    font-size: 18px;
    float: left;
  
    width: 50%;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.tab-group li a:hover
{
    background: #40cde0;
    color: #ffffff;
    
}

.tab-group .active a
{
    background: #40cde0;
    color: #ffffff;
}

.tab-content > div:last-child
{
    display: none;
}

.form h1
{
    text-align: center;
    color: #000000;
    font-weight: 300;
    margin: 0 0 40px;
}

h2
{
    text-align: center;
    color: #000000;
    font-weight: 1000;
    margin: 0;
}

span
{
    color: #ff00bf;
    font-weight: bold;
}

p
{
    text-align: center;
    color: #ffffff;
    margin: 0px 0px 50px 0px;
    padding-top: 2px;
}

div.info-alert
{
    color: #a30000;
    text-align: center;
    padding: 5px;
    margin-top: -20px;
    margin-bottom: 15px;
    font-weight: 300;
  
  
}

div.info-success
{
    color: lightgreen;
    display: box;
    text-align: center;
    padding: 5px;
    margin-top: -20px;
    margin-bottom: 15px;
    border: 1px solid darkcyan;
    background: #007a16;
}

label
{
    position: absolute;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    left: 8px;
    color: rgba(37, 37, 37, 0.3);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    font-size: 22px;
}

label .req
{
    margin: 2px;
    color: #40cde0;
}

label.active
{
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    left: 2px;
    top: -1px;
    font-size: 14px;
}

label.active .req
{
    opacity: 0;
}

label.highlight
{
    padding-top: 5px;
    color: #40cde0;
}

input, textarea
{
    font-size: 22px;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 10px;
    background: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #a0b3b0;
    color: #000000;
    border-radius: 0;
    -webkit-transition: border-color .25s ease, box-shadow .25s ease;
    transition: border-color 0.25s ease, box-shadow .25s ease;
    
}

input:focus, textarea:focus
{
    outline: 0;
    border-color: #40cde0;
}

textarea
{
    border: 2px solid #a0b3b0;
    resize: vertical;
}

.field-wrap
{
    position: relative;
    margin-bottom: 40px;
}

.top-row:after
{
    content: "";
    display: table;
    clear: both;
}

.top-row > div
{
    float: left;
    width: 48%;
    margin-right: 4%;
}

.top-row > div:last-child
{
    margin: 0;
}

.button
{
    font-family: 'Encode Sans', sans-serif;
    border: 0;
    outline: none;
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 30px;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1em;
    background: #40cde0;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-appearance: none;
}

.button:hover, .button:focus
{
    
}

.button-block
{
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 80%;
}

.forgot
{
    margin-top: -20px;
    text-align: right;
}

.showpass
{
    margin-top: -20px;
    text-align: right;
}

.rememberme
{
    margin-left: 5px;
    margin-top: -20px;
    text-align: right;
}

.checkbox
{
    width: 25px;
    margin: -16px 120px;
    margin-bottom: 50px;
    position: relative;
}

.checkbox label
{
    cursor: pointer;
    position: absolute;
    width: 15px;
    height: 15px;
    top: -7px;
    left: 5px;
    background: #eee;
    border: 1px solid #565454;
}

.checkbox label:after
{
    opacity: 0.5;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 3px;
    left: 2px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}

.checkbox input[type=checkbox]:not(:checked):hover + label:after
{
    opacity: 1;
}

.checkbox input[type=checkbox]:checked + label:after
{
    opacity: 1;
}

th
{
    height: 80px;
    color: #179b77;
}

td
{
    height: 40px;
    color: #fff;
    text-align: center;
}

tr:nth-child(even)
{
    background-color: #3d5568;
}