/*
 Theme Name:   Onshelf Retail Management
 Theme URI:    https://onshelf.route2marketsolutions.com/
 Description:  Theme for OnShelf Management
 Author:       R2|M
 Author URI:   https://www.route2marketsolutions.com
 Template:     intentionally-blank
 Version:      2026.02
*/

/*
Theme Name: Minimal Login Theme
*/

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Full-page center layout */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /*background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
	background: url(/wp-content/themes/onshelf/onshelf-bg.png) center center no-repeat;*/
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    width: 100%;
    text-align: center;
}

/* Login container */
.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* Login box */
.login-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Heading */
.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

/* Inputs */
.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.2s ease;
}

.login-box input:focus {
    border-color: #0073aa;
    outline: none;
}

/* Remember me */
.login-box label {
    font-size: 14px;
    color: #555;
}

/* Submit button */


.login-box .login-submit {
    margin-top: 30px;
}

.login-box input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.login-box input[type="submit"]:hover {
    background: #005f8d;
}

/* Error messages */
.login-box .login-error {
    background: #ffeaea;
    color: #cc0000;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}
img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        padding: 25px;
    }
}
@media (min-width: 481px){
    .container {
        max-width: 400px;
        margin: 0px auto;
    }
}