/* Login Form Styles */
div.pinto-login-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.pinto-login-form-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.pinto-login-form-wrapper h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.pinto-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.pinto-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pinto-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pinto-form .form-group {
    margin-bottom: 20px;
}

.pinto-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.pinto-form .input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.pinto-form .input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.pinto-form .remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pinto-form .remember-me label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.pinto-form .remember-me input[type="checkbox"] {
    margin-right: 8px;
}

.pinto-form .forgot-password {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
}

.pinto-form .forgot-password:hover {
    text-decoration: underline;
}

.pinto-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pinto-button:hover {
    background-color: #3a7bc8;
}

.pinto-button:disabled {
    background-color: #a0c0e8;
    cursor: not-allowed;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
}

.form-footer a {
    color: #4a90e2;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .pinto-login-container {
        padding: 10px;
    }
    
    .pinto-login-form-wrapper {
        padding: 20px;
    }
    
    .pinto-form .remember-me {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pinto-form .forgot-password {
        margin-top: 10px;
    }
}