/*
Theme Name: Mobile Merchant Solutions
Author: Keith Miller
Description: A custom theme for Mobile Merchant Solutions
Version: 1.0
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f7f6;
    display: flex;
	flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 10px;
}

.login-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    width: 90%;
    max-width: 380px;
	margin-bottom:auto;
}

/* Centers and sizes your logo */
.custom-logo-wrapper {
    margin-bottom: 0rem;
	margin-top:auto;
}

.custom-logo-wrapper img {
    max-width: 350px; 
    height: auto;
    display: block;
}

/* Styling the WP Login Form inputs and button */
#loginform input[type="text"], #loginform input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

#wp-submit {
    width: 100%;
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}