/*
Theme Name: Bridge Child
Theme URI: http://demo.qodeinteractive.com/bridge/
Description: A child theme of Bridge Theme
Author: Qode Interactive
Author URI: http://www.qodethemes.com/
Version: 1.0.0
Template: bridge
*/
@import url("../bridge/style.css");

/* START OF CUSTOM LOGIN SCREEN */
body.login {
    background: linear-gradient(135deg, #141414, #242423);
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    line-height: 1.4;
}


/* LOGIN BOX GLASSMORPHISM & ROUNDED CORNERS */
body.login #login {
    background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
	margin-top: 100px;
}

/* FORM BOX SPACING IMPROVEMENT */
body.login .login form {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ROUNDED INPUTS & BUTTON */
body.login input[type="text"],
body.login input[type="password"],
body.login input[type="submit"] {
    border-radius: 8px !important;
}

/* GRADIENT ANIMATED BACKGROUND */

.login form {
    margin: 24px 0;
    padding: 26px 24px;
    font-weight: 400;
    overflow: hidden;
    background: #fff0; 
    border: 1px solid #fff;
	border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.login #backtoblog a, .login #nav a {
	text-decoration: none;
	color: #fff;
}

.wp-core-ui .button-primary {
    background: #fff !important;
    border-color: #fff !important;
    color: #dedece !important;
    text-decoration: none !important;
    text-shadow: none !important;
}

.wp-core-ui .button-primary.focus,
.wp-core-ui .button-primary.hover,
.wp-core-ui .button-primary:focus,
.wp-core-ui .button-primary:hover {
    background: #dedece !important;
    border-color: #dedece !important;
    color: #fff !important;
}


.wp-core-ui .button-secondary:hover, .wp-core-ui .button.hover, .wp-core-ui .button:hover {
	color: #e3097d !important;
}


/* END OF CUSTOM LOGIN SCREEN */