body {
    background: #f7f9fa;
    color: rgba(0,0,0,.6);
    font-family: Poppins,sans-serif;
    font-size: 14px;
    line-height: 1.6em;
}

.form {
    background: #fff;
    width: 610px;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,.1);
    margin: 100px auto;
}

.form.signup {
    margin: 50px auto;
}

.form-panel {
    padding: 60px;
}

.form-panel .form-footer {
    display:none;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #666;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h1 {
    padding: 4px 0;
    color: #4285f4;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
} 

#response-box {
    width: 100%;
    height: 16px;
    text-align: center;
    color: #cd5c5c;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group:last-child {
    margin: 0;
}

.form-group label {
    display: block;
    margin: 0 0 10px;
    color: rgba(0,0,0,.9);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .2em;
}

.form-group label .err-box {
    text-transform: none;
    letter-spacing: 0;
    color: #cd5c5c;
    opacity: 0;
}

.form-group label .err-box::before {
    content: '-';
    margin: 0 7px;
    color: rgba(0,0,0,.9);
}


.form-group input {
    outline: 0;
    display: block;
    background: rgba(0,0,0,.1);
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 12px 20px;
    color: rgba(0,0,0,.6);
    font-size: 14px;
    line-height: inherit;
}

.form-group .form-set input {
    width: auto;
}

.form-group.error input,
.form-set.error input {
    border: 1px solid #cd5c5c;
}

.form-group.error .err-box,
.form-set.error .err-box {
    opacity: 1;
}

.form-group input:focus {
    color: rgba(0,0,0,.8);
    transition: .3s ease;
}

.form-group button {
    outline: 0;
    background: #4285f4;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.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-right: 10px;
}

.form-group .form-forgot-password {
    color: #4285f4;
    font-size: 12px;
    text-decoration: none;
}


@media only screen and (max-width: 650px) {
    .form {
        width: calc(100% - 10px)!important;
    }

    .form-panel {
        padding: 20px!important;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-set:first-child {
        margin-bottom: 20px;
    }
}

.links {
    width: 100%;
    margin-top: 30px;
    margin-bottom: -25px;
    text-align: center; 
}

.links a {
    color:#666;
}



@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf");
}