/* Login/Register Area */

section.login .form-control,
section.login .custom-select,
section.register .form-control,
section.register .custom-select {
    box-shadow: 0 0 0 0 !important;
    height: 33px;
    font-size: 14px;
    border-radius: 3px;
    border-color: #c7c7c7;
}

section.login .form-control:focus,
section.login .custom-select:focus,
section.register .form-control:focus,
section.register .custom-select:focus {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3) !important;
    border-color: #838383;
    transition: all ease-in-out 0.2s;
}

section.login label,
section.register label {
    font-size: 14px;
}

section.login {
    margin: 30px 20px 0 0;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
}

section.register {
    margin: 30px 0 80px 20px;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(12, 10, 10, 0.2);
}

.title {
    border-radius: 0 10px 0 0;
    background-color: #1F1F1F;
    color: #fff;
    padding: 5px 0 1px 10px;
    margin-bottom: 20px;
}

.btn-login {
    background-color: #1F1F1F;
    color: #fff;
    padding: 5px 25px;
}

.btn-login:hover {
    background-color: #fff;
    color: #1F1F1F;
    border: solid 1px #1F1F1F;
    transition: all ease-in-out 0.1s;
}

.btn-clear {
    background-color: #fff;
    border: solid 1px #1F1F1F;
    color: #1F1F1F;
    padding: 5px 30px;
}

.btn-clear:hover {
    background-color: #1F1F1F;
    color: #fff;
    transition: all ease-in-out 0.1s;
}

.btn-register {
    background-color: #1F1F1F;
    color: #fff;
    padding: 5px 30px;
}

.btn-register:hover {
    background-color: #fff;
    color: #1F1F1F;
    border: solid 1px #1F1F1F;
    transition: all ease-in-out 0.1s;
}

@media only screen and (max-width: 990px) {
    section.login,
    section.register {
        margin: 50px 0;
        box-shadow: 0 0 0 0;
        border-radius: 0;
    }
    .btn-login {
        width: 100%;
    }
}