/* FloatStore Login Form Styles */

/* Page background */
body.page-template .site-main {
    background-color: #f5f5f5;
    padding: 40px 0;
}

/* Login form container */
.floatstore-login-form {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Title styling */
.floatstore-login-form h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Subtitle styling */
.floatstore-login-form .form-subtitle {
    color: #666666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Form rows */
.floatstore-login-form .form-row {
    margin-bottom: 20px;
}

/* Label styling */
.floatstore-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

/* Input field styling */
.floatstore-login-form input[type=email],
.floatstore-login-form input[type=password] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.floatstore-login-form input[type=email]:focus,
.floatstore-login-form input[type=password]:focus {
    outline: none;
    border-color: #333333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Required field indicator */
.floatstore-login-form .required {
    color: #d63638;
}

/* Forgot password link */
.floatstore-login-form .forgot-password {
    color: #666666;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.floatstore-login-form .forgot-password:hover {
    color: #000000;
    text-decoration: underline;
}

/* Sign In button */
.floatstore-login-form .button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.2s, transform 0.1s;
}

.floatstore-login-form .button:hover {
    background: #333333;
    transform: translateY(-1px);
}

.floatstore-login-form .button:active {
    transform: translateY(0);
}

/* Form footer */
.floatstore-login-form .form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.floatstore-login-form .form-footer p {
    margin: 0;
    color: #666666;
    font-size: 14px;
}

.floatstore-login-form .form-footer a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.floatstore-login-form .form-footer a:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Message styling */
.floatstore-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.floatstore-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.floatstore-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.floatstore-message p {
    margin: 0;
}

/* Status container */
.floatstore-status {
    background: #f0f6fc;
    border: 1px solid #c5d2e0;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.floatstore-status p {
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.floatstore-status a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.floatstore-status a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .floatstore-login-form {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .floatstore-login-form h2 {
        font-size: 24px;
    }
    
    .floatstore-message {
        margin: 10px;
    }
}
