.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: 15px;
    background: rgba(54, 150, 147, 0.5);
    color: #a0b3b0;
    font-size: 20px;
    float: left;
    width: 50%;
    text-align: center;
    cursor: pointer;
    transition: .5s ease;
}
.tab-group li a:hover {
    background: #1CB5B0;
    color: #ffffff;
}
.tab-group .active a {
    background: #1CB5B0;
    color: #ffffff;
}

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

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

.form-header {
    margin: 0 0 40px;
}
.form-header h1 {
    padding: 4px 0;
    color: #4285F4;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}
.form-group:last-child {
    margin: 0;
}
.form-group label {
    display: block;
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.6);
    font-size: large;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.two .form-group label {
    color: #FFFFFF;
}
.form-group input,.form-group select {
    outline: none;
    display: block;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.6);
    font-family: inherit;
    font-size: large;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
}
.form-group input:focus {
    color: rgba(0, 0, 0, 0.8);
}
.two .form-group input {
    color: #FFFFFF;
}
.two .form-group input:focus {
    color: #FFFFFF;
}
.form-group button {
    outline: none;
    background: #4285F4;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}
.two .form-group button {
    background: #FFFFFF;
    color: #4285F4;
}
.form-group .form-remember {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.form-group .form-remember input[type=checkbox] {
    display: inline-block;
    width: auto;
    margin: 0 10px 0 0;
}
.form-group .form-recovery {
    color: #4285F4;
    font-size: 12px;
    text-decoration: none;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* movetop styling */
#movetop {
    position: fixed;
    bottom: 90px;
    right: 15px;
    z-index: 9;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #6055d9;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    padding: 0;
}

#movetop:hover {
    opacity: .8;
}

#to_home {
    position: fixed;
    bottom: 40px;
    right: 15px;
    z-index: 9;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #ff7e3c;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    padding: 0;
}

#to_home img {
    width: 100%;
}

#to_home:hover {
    opacity: .8;
}

/* //movetop styling */


/********************************
    Buttons
*********************************/
.btn {
    color: #fff;
    border: 0;
    border-radius: 3px;
    margin: 10px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    outline: 0;
}

.btn:active {
    box-shadow: inset 1px 1px 5px rgba(99, 99, 99, 0.7);
}

.btn.def {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn.def:hover {
    background-color: #ebebeb;
    border-color: #adadad;
}

.btn.pri {
    background-color: #428bca;
    border-color: #357ebd;
}

.btn.pri:hover {
    background-color: #3276b1;
    border-color: #285e8e;
}

.btn.suc {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn.suc:hover {
    background-color: #47a447;
    border-color: #398439;
}

.btn.dan {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn.dan:hover {
    background-color: #d2322d;
    border-color: #ac2925;
}
