/* Two-column layout */
body.login {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    margin: 0;
    background: #fff;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
	font-size: 16px !important;
}

/* Left column - login form */
#login {
	width: auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    box-sizing: border-box;
}

.login form {
	margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.login #backtoblog, .login #nav {
    font-size: 16px !important;
    padding: 0 !important;
}

.login .privacy-policy-page-link {
    text-align: left !important;
}

.login a {
    color: #e56db1;
}

.login form .input {
	min-height: 48px;
}

.login form .input:active, .login form .input:focus {
	border-color: #e56db1 !important;
	box-shadow: 0 0 0 1px #e56db1;
}

/* Right column - hero image */
body.login::after {
    content: '';
    width: 50%;
    background: url('/wp-content/uploads/2025/08/DSC05048-2-scaled.jpg') center center / cover no-repeat;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
}

/* Button styling - adjust colours to match your brand */
.wp-core-ui .button-primary {
    background: #e56db1;
    border-color: #e56db1;
    color: #101820;
	font-weight: 600 !important;
	font-size: 16px;
}

.login .button-primary {
	float: left;
}

#login #reg_passmail {
	margin: 16px 0;
}

.login .message, .login .notice, .login .success {
	border-left: 4px solid #e56db1;
	background-color: #613e52;
	border-radius: 4px;
    color: #fff;
}

.button.button-large, .button.button-hero {
	min-height: 56px !important;
	font-weight: 600 !important;
	font-size: 16px !important;
}

.wp-core-ui .button-primary:hover,
.wp-core-ui .button-primary:focus {
    background: #613e52;
    border-color: #613e52;
    color: #fff;
}

/* Mobile - stack vertically */
@media (max-width: 768px) {
    body.login {
        flex-direction: column;
    }

    body.login::after {
        display: none;
    }

    #login {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
    }
}
